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

40 lines
567 B
CSS
Raw Normal View History

2022-03-01 02:39:37 +00:00
.menu {
position: fixed;
2023-04-10 03:22:28 +00:00
top: 60px;
2022-03-01 02:39:37 +00: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 02:39:37 +00:00
overflow: auto;
}
.items {
display: flex;
flex-direction: column;
}
.item {
font-size: var(--font-size-lg);
2023-04-10 03:22:28 +00:00
font-weight: 700;
line-height: 80px;
padding: 0 40px;
2022-03-01 02:39:37 +00:00
}
2023-04-10 03:22:28 +00:00
a.item {
2023-04-12 20:40:19 +00:00
color: var(--base600);
}
a.item.selected,
.submenu a.item.selected {
2023-04-10 03:22:28 +00:00
color: var(--base900);
2022-03-01 02:39:37 +00:00
}
2023-04-12 20:40:19 +00:00
.submenu a.item {
color: var(--base600);
margin-inline-start: 40px;
2023-04-12 20:40:19 +00:00
}