Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Template:Columns.css: Difference between revisions

Template page
No edit summary
No edit summary
Line 2: Line 2:
     display: flex;
     display: flex;
     flex-direction: column;
     flex-direction: column;
    gap: 1rem;
}
}


Line 8: Line 7:
     .flex-row {
     .flex-row {
         flex-direction: row;
         flex-direction: row;
        gap: 1rem;
     }
     }
}
}


.flex-row-col {
.flex-row-col {
     flex-grow: 1;
     flex: 1;
}
}

Revision as of 10:19, 24 October 2025

.flex-row {
    display: flex;
    flex-direction: column;
}

@media all and ( min-width: 720px ) {
    .flex-row {
        flex-direction: row;
        gap: 1rem;
    }
}

.flex-row-col {
    flex: 1;
}