umami/components/WebsiteDetails.module.css

35 lines
494 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
.row {
border-top: 1px solid #e1e1e1;
min-height: 430px;
2020-08-02 06:20:52 +02:00
}
.row > [class*='col-'] {
border-left: 1px solid #e1e1e1;
padding: 0 20px;
}
.row > [class*='col-']:first-child {
border-left: 0;
padding-left: 0;
}
.row > [class*='col-']:last-child {
padding-right: 0;
}
2020-08-02 09:51:26 +02:00
@media only screen and (max-width: 1000px) {
.row {
border: 0;
}
.row > [class*='col-'] {
border-top: 1px solid #e1e1e1;
border-left: 0;
padding: 0;
}
}