58 lines
1.2 KiB
SCSS
58 lines
1.2 KiB
SCSS
@charset "UTF-8";
|
|
@import 'base_config';
|
|
@import '../custom_config';
|
|
@import '../custom_color', '../custom_layout';
|
|
@import 'mixins';
|
|
|
|
|
|
.tabs-bar {
|
|
background: $top-bar-color;
|
|
|
|
&__link {
|
|
padding: 16px 16px 12px 16px;
|
|
color: $top-bar-icon-color;
|
|
border-bottom: 4px solid transparent;
|
|
|
|
&.active {
|
|
border-bottom: 4px solid $tab-indicator-active-color;
|
|
color: $tab-indicator-active-color;
|
|
}
|
|
|
|
.fa { font-size: 20px }
|
|
|
|
span {
|
|
margin-left: 8px;
|
|
vertical-align: text-bottom;
|
|
}
|
|
}
|
|
|
|
&__wrapper {
|
|
@include shadow-4dp;
|
|
background: transparent;
|
|
}
|
|
}
|
|
|
|
|
|
#tabs-bar__portal { overflow-y: hidden }
|
|
|
|
.floating-action-button {
|
|
@include shadow-6dp;
|
|
background: $floating-action-button-color;
|
|
color: $floating-action-button-icon-color;
|
|
font-size: 24px;
|
|
|
|
&:hover { background: $floating-action-button-hover-color }
|
|
|
|
&:active,
|
|
&:focus { background: $floating-action-button-active-color }
|
|
}
|
|
|
|
.columns-area--mobile {
|
|
.column { margin: 0 !important }
|
|
.search__input { padding: 16px 46px }
|
|
|
|
.search__icon .fa {
|
|
top: 16px;
|
|
left: 16px;
|
|
}
|
|
} |