mirror of
https://github.com/discourse/discourse.git
synced 2025-01-16 03:42:41 +08:00
DEV: User page layout backwards compatibility (#30515)
Followup to #30499, fixes CSS for older browsers.
This commit is contained in:
parent
d523c37057
commit
2ff3f44b95
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue
Block a user