CSS fixes for mobile.

This commit is contained in:
Mike Cao 2020-10-03 10:53:06 -07:00
parent 3d1dc08491
commit bba75fd67f
8 changed files with 35 additions and 11 deletions

View file

@ -12,6 +12,8 @@
.loading {
display: flex;
justify-content: center;
align-items: center;
position: absolute;
top: 50%;
left: 50%;

View file

@ -3,7 +3,7 @@
border: 1px solid var(--gray500);
border-radius: 4px;
overflow: hidden;
z-index: 2;
z-index: 100;
}
.option {

View file

@ -46,7 +46,7 @@ export default function MenuButton({
</Button>
{showMenu && (
<Menu
className={classNames(styles.menu, menuClassname)}
className={menuClassname}
options={options}
selectedOption={selectedOption}
onSelect={handleSelect}

View file

@ -9,10 +9,6 @@
border-radius: 4px;
}
.menu {
z-index: 100;
}
.text {
font-size: var(--font-size-small);
}