umami/components/WebsiteDetails.module.css
2020-09-25 23:38:28 -07:00

60 lines
785 B
CSS

.chart {
margin-bottom: 30px;
}
.view {
border-top: 1px solid var(--gray300);
}
.menu {
font-size: var(--font-size-small);
}
.content {
min-height: 600px;
padding: 20px 0;
}
.backButton {
margin-bottom: 16px;
}
.backButton svg {
transform: rotate(180deg);
}
.row {
border-top: 1px solid var(--gray300);
min-height: 430px;
}
.row > [class*='col-'] {
border-left: 1px solid var(--gray300);
padding: 20px;
}
.row > [class*='col-']:first-child {
border-left: 0;
padding-left: 0;
}
.row > [class*='col-']:last-child {
padding-right: 0;
}
.hidden {
display: none;
}
@media only screen and (max-width: 992px) {
.row {
border: 0;
}
.row > [class*='col-'] {
border-top: 1px solid var(--gray300);
border-left: 0;
padding: 0;
}
}