Skip to content
This repository was archived by the owner on Apr 22, 2025. It is now read-only.

Commit 99bb5d9

Browse files
committed
Fix wrong input padding
1 parent 96acf87 commit 99bb5d9

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/main.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,8 +236,8 @@
236236
}
237237

238238
[class^='textArea_'] [class*='fontSize16Padding_'] {
239-
padding-bottom: 16px !important;
240-
padding-top: 16px !important;
239+
padding-bottom: var(--pad) !important;
240+
padding-top: var(--pad) !important;
241241
}
242242

243243
/* rounding fixes */

theme/modules/more-compact.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,8 @@
1919
display: none !important;
2020
}
2121
}
22+
23+
[class^='textArea_'] [class*='fontSize16Padding_'] {
24+
padding-bottom: 11px !important;
25+
padding-top: 11px !important;
26+
}

0 commit comments

Comments
 (0)