umami/components/layout/MenuLayout.module.css

44 lines
669 B
CSS
Raw Normal View History

2020-08-09 06:48:43 +00:00
.container {
display: flex;
flex: 1;
2020-08-17 23:46:13 +00:00
position: relative;
2020-08-09 06:48:43 +00:00
}
2020-08-09 22:13:38 +00:00
.container .menu {
2020-08-09 06:48:43 +00:00
display: flex;
flex-direction: column;
2020-08-17 23:46:13 +00:00
padding: 30px 0;
border: 0;
2020-08-09 06:48:43 +00:00
}
2020-08-17 23:46:13 +00:00
.container .content {
2020-08-09 06:48:43 +00:00
display: flex;
flex-direction: column;
border-left: 1px solid var(--gray300);
padding-left: 30px;
}
.option {
2020-08-09 22:13:38 +00:00
font-size: var(--font-size-normal);
2020-08-09 09:03:37 +00:00
padding: 8px 16px;
2020-08-09 06:48:43 +00:00
cursor: pointer;
margin-right: 30px;
border-radius: 4px;
}
.option:hover {
background: var(--gray75);
}
2020-08-09 22:13:38 +00:00
.selected {
2020-08-09 06:48:43 +00:00
font-weight: 600;
}
2020-08-17 23:46:13 +00:00
@media only screen and (max-width: 992px) {
.container .content {
border-top: 1px solid var(--gray300);
border-left: 0;
padding-left: 0;
}
}