mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
35 lines
447 B
CSS
35 lines
447 B
CSS
|
.container {
|
||
|
display: flex;
|
||
|
flex: 1;
|
||
|
}
|
||
|
|
||
|
.menu {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
padding-top: 30px;
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
border-left: 1px solid var(--gray300);
|
||
|
padding-left: 30px;
|
||
|
flex: 1;
|
||
|
}
|
||
|
|
||
|
.option {
|
||
|
padding: 8px 20px;
|
||
|
cursor: pointer;
|
||
|
min-width: 140px;
|
||
|
margin-right: 30px;
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
|
||
|
.option:hover {
|
||
|
background: var(--gray75);
|
||
|
}
|
||
|
|
||
|
.active {
|
||
|
font-weight: 600;
|
||
|
}
|