Skip to content
Snippets Groups Projects
Commit c3f8b713 authored by HJ's avatar HJ :fire:
Browse files

fixed wrong height for selects

parent 83b85cd4
No related branches found
No related tags found
No related merge requests found
...@@ -119,7 +119,7 @@ input, textarea, .select { ...@@ -119,7 +119,7 @@ input, textarea, .select {
box-sizing: border-box; box-sizing: border-box;
display: inline-block; display: inline-block;
position: relative; position: relative;
height: 29px; height: 28px;
line-height: 16px; line-height: 16px;
hyphens: none; hyphens: none;
...@@ -136,7 +136,7 @@ input, textarea, .select { ...@@ -136,7 +136,7 @@ input, textarea, .select {
height: 100%; height: 100%;
color: $fallback--text; color: $fallback--text;
color: var(--text, $fallback--text); color: var(--text, $fallback--text);
line-height: 29px; line-height: 28px;
z-index: 0; z-index: 0;
pointer-events: none; pointer-events: none;
} }
...@@ -156,7 +156,7 @@ input, textarea, .select { ...@@ -156,7 +156,7 @@ input, textarea, .select {
font-size: 14px; font-size: 14px;
width: 100%; width: 100%;
z-index: 1; z-index: 1;
height: 29px; height: 28px;
line-height: 16px; line-height: 16px;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment