mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-17 14:40:55 +00:00
34 lines
389 B
SCSS
34 lines
389 B
SCSS
// Button overrides
|
|
@import "common/sass/variables";
|
|
|
|
.dropdown {
|
|
.caret {
|
|
margin-left: $space-sm;
|
|
}
|
|
}
|
|
|
|
.dropdown-menu {
|
|
padding: 0;
|
|
border: none;
|
|
|
|
> li {
|
|
margin: 0;
|
|
|
|
&:first-child {
|
|
padding-top: 4px;
|
|
}
|
|
|
|
&:last-child {
|
|
padding-bottom: 4px;
|
|
}
|
|
|
|
> a {
|
|
font-weight: 300;
|
|
|
|
&.active {
|
|
color: $link-color;
|
|
}
|
|
}
|
|
}
|
|
}
|