umami/components/layout/SettingsLayout.module.css

24 lines
321 B
CSS
Raw Normal View History

2023-03-23 19:46:49 +01:00
.container {
display: grid;
grid-template-columns: max-content 1fr;
grid-template-rows: 1fr;
}
.menu {
display: flex;
flex-direction: column;
width: 200px;
padding: 40px 0;
2023-03-24 00:33:10 +01:00
margin-right: 20px;
2023-03-23 19:46:49 +01:00
}
.content {
display: flex;
flex-direction: column;
}
2023-03-24 00:33:10 +01:00
.menu.hidden {
visibility: hidden;
width: 0;
}