DEV: User page layout backwards compatibility (#30515)

Followup to #30499, fixes CSS for older browsers.
This commit is contained in:
Penar Musaraj 2024-12-31 11:43:49 -05:00 committed by GitHub
parent d523c37057
commit 2ff3f44b95
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -123,9 +123,13 @@
&__header,
&__body,
&__row {
display: grid;
grid-column: 1 / -1;
grid-template-columns: subgrid;
display: contents;
@supports (grid-template-rows: subgrid) {
display: grid;
grid-column: 1 / -1;
grid-template-columns: subgrid;
}
}
&__column-header,