26 lines
365 B
SCSS
26 lines
365 B
SCSS
#dashboard {
|
|
.dashboard-container {
|
|
max-width: 800px;
|
|
margin: auto;
|
|
padding-bottom: 100px;
|
|
}
|
|
|
|
h1.page-title {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
ul#dash-menu {
|
|
display: flex;
|
|
gap: 12px;
|
|
justify-content: flex-start;
|
|
list-style: none;
|
|
padding: 0;
|
|
|
|
li {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
}
|
|
}
|