mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-11 19:44:21 +00:00
1a09c6a7a6
* Convert all dropdowns to use a single dropdown shell component. Restyle header ones to look like v3. * Right align some. * Color dropdown component, which node selector uses. * Prettier fixes.
39 lines
497 B
SCSS
39 lines
497 B
SCSS
// Button overrides
|
|
@import "common/sass/variables";
|
|
|
|
.dropdown {
|
|
.caret {
|
|
margin-left: $space-sm;
|
|
}
|
|
}
|
|
|
|
// If it's a span, we probably want it inline-block, not inline
|
|
span.dropdown {
|
|
display: inline-block;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|
|
}
|
|
}
|