Move generic select style to globals

This commit is contained in:
Justin Edmund 2022-02-27 00:36:59 -08:00
parent 6bf39b1c54
commit 3ded388ffa
2 changed files with 21 additions and 21 deletions

View file

@ -30,27 +30,6 @@
width: 100%;
}
}
select {
appearance: none;
background-image: url('/icons/Arrow.svg');
background-repeat: no-repeat;
background-position-y: center;
background-position-x: 98%;
background-size: $unit * 1.5;
border: none;
border-radius: 6px;
color: $grey-00;
margin-bottom: $unit;
font-size: $font-regular;
padding: 0 ($unit * 2);
height: $unit * 6;
width: 100%;
&:hover {
cursor: pointer;
}
}
}
&.ReadOnly {

View file

@ -44,6 +44,27 @@ h1 {
text-align: center;
}
select {
appearance: none;
background-image: url('/icons/Arrow.svg');
background-repeat: no-repeat;
background-position-y: center;
background-position-x: 98%;
background-size: $unit * 1.5;
border: none;
border-radius: 6px;
color: $grey-00;
margin-bottom: $unit;
font-size: $font-regular;
padding: 0 ($unit * 2);
height: $unit * 6;
width: 100%;
&:hover {
cursor: pointer;
}
}
#Content {
display: flex;
flex-direction: column;