Move generic select style to globals
This commit is contained in:
parent
6bf39b1c54
commit
3ded388ffa
2 changed files with 21 additions and 21 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue