Skip to content

Commit 456c02f

Browse files
committed
fix: it doesn't like dynamic heights for long markdown descriptions :(
1 parent 564bf0d commit 456c02f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

styles/atom-ide-datatips-marked.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
color: @syntax-text-color;
1010
font-family: var(--editor-font-family);
1111
font-size: var(--editor-font-size);
12-
max-height: 48em;
12+
max-height: 480px;
1313
max-width: 64em;
1414
overflow: auto;
1515
white-space: normal;

styles/atom-ide-datatips.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
position: relative;
1111
white-space: normal;
1212
pointer-events: all;
13-
max-height: 48em;
13+
max-height: 480px;
1414
max-width: 64em;
1515
overflow: none;
1616

@@ -33,7 +33,7 @@
3333
background-color: @syntax-background-color;
3434
display: flex;
3535
position: relative;
36-
max-height: 48em;
36+
max-height: 480px;
3737
max-width: 64em;
3838
transition: background-color 0.15s ease;
3939
padding: 8px;

0 commit comments

Comments
 (0)