Set default width to fix IE11 compatibility
parent
7de51211ab
commit
4e58f7262a
|
@ -15,10 +15,11 @@
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
background: $whitish;
|
background: $whitish;
|
||||||
border-radius: 4px 0 0 4px;
|
border-radius: 4px 0 0 4px;
|
||||||
display: inline-flex;
|
display: flex;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
flex-basis: 140px;
|
||||||
margin-right: .1rem;
|
margin-right: .1rem;
|
||||||
width: 140px;
|
min-width: 140px;
|
||||||
&:hover {
|
&:hover {
|
||||||
background: darken($whitish, 5%);
|
background: darken($whitish, 5%);
|
||||||
transition: background .3s;
|
transition: background .3s;
|
||||||
|
@ -26,6 +27,11 @@
|
||||||
span {
|
span {
|
||||||
align-self: center;
|
align-self: center;
|
||||||
}
|
}
|
||||||
|
.icon-arrow-up {
|
||||||
|
margin-left: auto;
|
||||||
|
padding: 0 .5rem;
|
||||||
|
transform: rotate(180deg);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
&:hover {
|
&:hover {
|
||||||
color: $blackish;
|
color: $blackish;
|
||||||
|
|
Loading…
Reference in New Issue