mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
16 lines
254 B
SCSS
16 lines
254 B
SCSS
|
.tab {
|
||
|
color: #8C8E94;
|
||
|
font-size: .75rem;
|
||
|
text-transform: uppercase;
|
||
|
cursor: pointer;
|
||
|
padding: 8px 0;
|
||
|
margin: 0 8px;
|
||
|
min-width: 50px;
|
||
|
text-align: center;
|
||
|
|
||
|
&--active {
|
||
|
color: $black;
|
||
|
border-bottom: 2px solid $curious-blue;
|
||
|
}
|
||
|
}
|