2017-12-02 00:05:58 -06:00
|
|
|
.dashboard-settings {
|
|
|
|
opacity: 0;
|
2017-12-08 11:15:24 -06:00
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2017-12-02 00:05:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-page--settings-opening {
|
|
|
|
.dashboard-container {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-page--settings-open {
|
|
|
|
.dashboard-settings {
|
|
|
|
opacity: 1;
|
2017-12-08 11:15:24 -06:00
|
|
|
transition: opacity 300ms ease-in-out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-settings__content {
|
|
|
|
flex-grow: 1;
|
|
|
|
min-width: 0;
|
|
|
|
height: 100%;
|
|
|
|
padding: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-settings__aside {
|
|
|
|
padding: 30px 0 0 30px;
|
2017-12-10 05:21:04 -06:00
|
|
|
background: $panel-bg;
|
2017-12-08 11:15:24 -06:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-settings__aside-header {
|
|
|
|
color: $text-muted;
|
|
|
|
font-size: $font-size-h3;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
padding-right: 60px;
|
|
|
|
white-space: nowrap;
|
2017-12-10 05:41:11 -06:00
|
|
|
|
|
|
|
i {
|
|
|
|
font-size: 25px;
|
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
2017-12-08 11:15:24 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-settings__header {
|
|
|
|
font-size: $font-size-h3;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-settings__nav-item {
|
|
|
|
padding: 7px 12px;
|
|
|
|
color: $text-color;
|
2017-12-10 05:21:04 -06:00
|
|
|
font-size: $font-size-md;
|
2017-12-08 11:15:24 -06:00
|
|
|
@include left-brand-border;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
@include left-brand-border-gradient();
|
|
|
|
background: $page-bg;
|
2017-12-02 00:05:58 -06:00
|
|
|
}
|
2017-12-10 05:21:04 -06:00
|
|
|
|
|
|
|
i {
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
2017-12-02 00:05:58 -06:00
|
|
|
}
|