Merge pull request #233 from sharetribe/fix-mobile-search-border

Fix mobile search border height
This commit is contained in:
Kimmo Puputti 2017-06-21 13:30:08 +03:00 committed by GitHub
commit 7e756f1198
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;