52 lines
753 B
SCSS
52 lines
753 B
SCSS
div.brand {
|
|
text-align: center;
|
|
height: 52px;
|
|
background-color: #8fb677;
|
|
}
|
|
|
|
img.dashboard-brand {
|
|
text-align: center;
|
|
height: 100%;
|
|
width: auto;
|
|
}
|
|
|
|
ul.guildList {
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
overflow: auto;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
div.dashboard-sidebar svg {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
div.mobile-sidebar {
|
|
z-index: 100;
|
|
min-height: 100vh;
|
|
position: absolute;
|
|
top: 0;
|
|
}
|
|
|
|
div.mobile-sidebar.is-active {
|
|
display: flex;
|
|
}
|
|
|
|
aside.menu {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.dashboard-sidebar {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: #363636;
|
|
width: 230px !important;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.aside-footer {
|
|
justify-self: end;
|
|
}
|