Skip to content
style.css 432 B
Newer Older
Bengfort's avatar
Bengfort committed
.container {
    max-width: var(--breakpoint-md, 768px);
}

Bengfort's avatar
Bengfort committed
.full-width {
    overflow-x: auto;
}
Bengfort's avatar
Bengfort committed

Bengfort's avatar
Bengfort committed
@media (min-width: 768px) {
Bengfort's avatar
Bengfort committed
    .full-width {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
Bengfort's avatar
Bengfort committed
    }
    .full-width > * {
Bengfort's avatar
Bengfort committed
        width: auto;
        min-width: 738px;  /* 768px - 2 * 15px (padding) */
        margin: 0 auto;