Set default width to fix IE11 compatibility

stable
Xavier Julián 2015-10-29 08:15:50 +01:00
parent 7de51211ab
commit 4e58f7262a
1 changed files with 8 additions and 2 deletions

View File

@ -15,10 +15,11 @@
align-items: stretch;
background: $whitish;
border-radius: 4px 0 0 4px;
display: inline-flex;
display: flex;
flex: 1;
flex-basis: 140px;
margin-right: .1rem;
width: 140px;
min-width: 140px;
&:hover {
background: darken($whitish, 5%);
transition: background .3s;
@ -26,6 +27,11 @@
span {
align-self: center;
}
.icon-arrow-up {
margin-left: auto;
padding: 0 .5rem;
transform: rotate(180deg);
}
}
&:hover {
color: $blackish;