Skip to content

Commit 950e2c3

Browse files
committed
fix: issues with "hide-left-sidebar"
1 parent d114f5a commit 950e2c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/views/blog-post/blog-post-layout/blog-post-layout.module.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
max-width: var(--max-width_xl);
88
margin: 0 auto;
99

10-
&:where(:not([data-hide-left-sidebar])) {
10+
&:where(:not([data-hide-left-sidebar="true"])) {
1111
@include from($tabletLarge) {
1212
grid-template-columns: 25% 1fr;
1313
}
1414
}
1515

1616
// in tablet view, when the sidebar is hidden, the "content" column needs to be centered
17-
&[data-hide-left-sidebar] {
17+
&[data-hide-left-sidebar="true"] {
1818
@include until($desktopSmall) {
1919
max-width: var(--max-width_m);
2020
}

0 commit comments

Comments
 (0)