[CORL-743] Fix sort menu on small screens (#2698)

* fix: sort menu on small screens

* chore: add comments
This commit is contained in:
Vinh
2019-11-07 15:32:49 -05:00
committed by Kim Gardner
parent f85af8e88f
commit 8ee74b7d24
2 changed files with 15 additions and 4 deletions
@@ -1,8 +1,18 @@
.mobileSelect {
padding: 11px;
width: 0px;
font-size: 0;
/* This adds left padding to Chrome on windows.. */
padding: 3px;
font-size: 16px;
line-height: 0;
height: 24px;
width: 24px;
/* Make the native select invisible */
opacity: 0;
}
.mobileAfterWrapper {
right: 5px;
height: 24px;
width: 24px;
right: 0px;
border: 1px solid var(--palette-text-primary);
box-sizing: border-box;
border-radius: var(--round-corners);
}
@@ -26,6 +26,7 @@
outline: none;
color: var(--palette-text-primary);
width: 100%;
font-family: system-ui !important;
&::-moz-focus-inner {
border: 0;