mirror of
https://github.com/danog/sass-site.git
synced 2024-12-13 01:47:44 +01:00
11 lines
339 B
SCSS
11 lines
339 B
SCSS
|
// Styles that are included only when JavaScript is disabled. These override the
|
||
|
// default styles to make them work better without JS.
|
||
|
|
||
|
// Make the in-page table of contents fully open by default, since we can't
|
||
|
// dynamically expand it.
|
||
|
.page-sections li a.section {
|
||
|
&::after { transform: rotate(90deg); }
|
||
|
+ ul {display: block; }
|
||
|
}
|
||
|
|