umami/src/components/common/MobileMenu.module.css

40 lines
559 B
CSS
Raw Normal View History

2022-03-01 03:39:37 +01:00
.menu {
position: fixed;
2023-04-10 05:22:28 +02:00
top: 60px;
2022-03-01 03:39:37 +01:00
left: 0;
right: 0;
bottom: 0;
margin: auto;
display: flex;
flex-direction: column;
background-color: var(--base50);
z-index: var(--z-index-popup);
2022-03-01 03:39:37 +01:00
overflow: auto;
}
.items {
display: flex;
flex-direction: column;
}
.item {
font-size: var(--font-size-lg);
2023-04-10 05:22:28 +02:00
font-weight: 700;
line-height: 80px;
padding: 0 40px;
2022-03-01 03:39:37 +01:00
}
2023-04-10 05:22:28 +02:00
a.item {
2023-04-12 22:40:19 +02:00
color: var(--base600);
}
a.item.selected,
.submenu a.item.selected {
2023-04-10 05:22:28 +02:00
color: var(--base900);
2022-03-01 03:39:37 +01:00
}
2023-04-12 22:40:19 +02:00
.submenu a.item {
color: var(--base600);
margin-left: 40px;
}