umami/components/layout/Page.module.css

15 lines
214 B
CSS
Raw Normal View History

2020-08-18 07:47:58 +02:00
.page {
2020-09-22 06:34:55 +02:00
flex: 1;
display: flex;
flex-direction: column;
background: var(--base50);
position: relative;
2023-02-10 12:26:57 +01:00
padding: 30px;
2020-08-06 04:04:02 +02:00
}
2023-04-10 05:22:28 +02:00
@media only screen and (max-width: 768px) {
.page {
padding: 10px 0;
}
}