Fix mobile search border height

This commit is contained in:
Kimmo Puputti 2017-06-21 11:41:39 +03:00
parent 2b4c722781
commit 23b79a1246
2 changed files with 7 additions and 0 deletions

View file

@ -19,6 +19,9 @@
.mobileIcon {
margin-left: 24px;
padding: 11px 0 17px 0;
/* Borders */
border-bottom-width: var(--borderRadiusMobileSearch);
}
.mobileInput {
@ -29,6 +32,9 @@
margin: 0 24px 0 0;
padding: 1px 13px 13px 13px;
height: var(--inputHeight);
/* Borders */
border-bottom-width: var(--borderRadiusMobileSearch);
}
.desktopIcon {

View file

@ -39,6 +39,7 @@
/* Border radius */
--borderRadius: 2px;
--borderRadiusMobileSearch: 3px;
/* Transitions */
--transitionStyle: ease-in 0.2s;