umami/components/layout/MenuLayout.module.css

39 lines
608 B
CSS
Raw Normal View History

2020-08-09 08:48:43 +02:00
.container {
display: flex;
flex: 1;
2020-08-18 07:47:58 +02:00
height: 100%;
2020-08-09 08:48:43 +02:00
}
2020-08-10 00:13:38 +02:00
.container .menu {
2020-08-18 01:46:13 +02:00
padding: 30px 0;
border: 0;
2020-08-09 08:48:43 +02:00
}
2020-08-18 01:46:13 +02:00
.container .content {
flex: 1;
position: relative;
2020-08-09 08:48:43 +02:00
border-left: 1px solid var(--gray300);
padding-left: 30px;
margin-left: 30px;
2020-08-09 08:48:43 +02:00
}
2020-08-18 01:46:13 +02:00
@media only screen and (max-width: 992px) {
2020-08-18 07:47:58 +02:00
.container {
2022-02-17 08:10:35 +01:00
flex-direction: column;
2020-08-18 07:47:58 +02:00
height: auto;
}
2022-02-17 08:10:35 +01:00
.container .menu {
display: flex;
justify-content: space-around;
align-items: flex-start;
}
2020-08-18 01:46:13 +02:00
.container .content {
border-top: 1px solid var(--gray300);
border-left: 0;
padding-left: 0;
margin-left: 0;
2020-08-18 01:46:13 +02:00
}
}