umami/components/common/MobileMenu.module.css

42 lines
580 B
CSS
Raw Normal View History

2022-03-01 03:39:37 +01:00
.menu {
position: fixed;
top: 0;
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 {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.item {
font-size: var(--font-size-lg);
2022-03-01 03:39:37 +01:00
}
.item + .item {
margin-top: 20px;
}
2022-03-02 04:28:44 +01:00
.item:last-child {
margin-top: 60px;
}
2022-03-01 03:39:37 +01:00
.header {
display: flex;
justify-content: flex-end;
align-items: center;
height: 100px;
2022-03-12 01:04:05 +01:00
padding: 0 30px;
2022-03-01 03:39:37 +01:00
}