52 lines
871 B
SCSS
52 lines
871 B
SCSS
@import 'common/sass/variables';
|
|
@import 'common/sass/mixins';
|
|
|
|
$button-padding: $space-xs $space-md;
|
|
$button-font-size: $font-size-small;
|
|
|
|
@if ($is-electron) {
|
|
$button-padding: 12px 0px;
|
|
$button-font-size: 13px;
|
|
}
|
|
|
|
|
|
.NetworkSelector {
|
|
width: 100%;
|
|
text-align: left;
|
|
color: $text-color;
|
|
font-size: $font-size-base;
|
|
|
|
&-add,
|
|
&-alts {
|
|
@include reset-button;
|
|
display: block;
|
|
width: 100%;
|
|
padding: $button-padding;
|
|
text-align: center;
|
|
color: $text-color;
|
|
font-size: $button-font-size;
|
|
|
|
&:hover {
|
|
color: $link-hover-color;
|
|
}
|
|
|
|
.fa {
|
|
font-size: 12px;
|
|
width: 11px;
|
|
text-align: center;
|
|
opacity: 0.8;
|
|
margin-right: $space-xs;
|
|
}
|
|
}
|
|
|
|
&-alts {
|
|
border-bottom: 1px solid $gray-lighter;
|
|
}
|
|
|
|
@if ($is-electron) {
|
|
&-add {
|
|
border-bottom: 1px solid $gray-lighter;
|
|
}
|
|
}
|
|
}
|