fix account wraping and overflow

This commit is contained in:
Nicolas Constant 2020-06-15 01:07:30 -04:00
parent 9ad3ef81b4
commit d5b2a3e47d
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
1 changed files with 6 additions and 0 deletions

View File

@ -10,6 +10,8 @@
transition: all .3s;
border-top: 1px solid $separator-color;
overflow: hidden;
&:last-of-type {
border-bottom: 1px solid $separator-color;
}
@ -29,12 +31,16 @@
margin: 0 0 5px 0;
color: $status-secondary-color;
transition: all .3s;
white-space: nowrap;
}
&:hover,
&:hover &__fullhandle {
color: white;
text-decoration: none;
}
&:hover {
background-color: $button-background-color-hover;
}