umami/components/pages/WebsiteDetails.module.css

43 lines
521 B
CSS
Raw Normal View History

2020-08-01 06:56:25 +02:00
.chart {
margin-bottom: 30px;
2020-08-01 04:05:14 +02:00
}
2020-08-02 06:20:52 +02:00
.view {
2020-08-09 12:04:48 +02:00
border-top: 1px solid var(--gray300);
}
.menu {
font-size: var(--font-size-small);
}
.content {
min-height: 600px;
2020-09-22 06:34:55 +02:00
padding: 20px 0;
}
2020-08-10 00:13:38 +02:00
.backButton {
2020-09-29 07:12:48 +02:00
display: flex;
justify-content: center;
align-items: center;
2020-08-10 00:13:38 +02:00
margin-bottom: 16px;
}
.backButton svg {
transform: rotate(180deg);
}
2020-08-25 08:49:14 +02:00
.hidden {
display: none;
}
2020-10-10 05:37:24 +02:00
.eventschart {
padding-top: 30px;
2020-08-02 09:51:26 +02:00
}
2022-02-17 08:10:35 +01:00
@media only screen and (max-width: 992px) {
.menu {
display: flex;
flex-direction: column;
}
}