diff options
Diffstat (limited to '_sass')
-rw-r--r-- | _sass/layout.scss | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/_sass/layout.scss b/_sass/layout.scss index 9666867..18ee411 100644 --- a/_sass/layout.scss +++ b/_sass/layout.scss @@ -67,11 +67,9 @@ aside ul { aside > ul { margin-left: 12px; } // align description arrow with list bullet inside toc -aside summary { list-style-position: outside; } - +summary { list-style-position: outside; } // hide bullets for list items that can be expanded li.stub::marker { content: ""; } - // give collapsable element arrow "clickable" cursor summary::marker { cursor: pointer; } @@ -115,3 +113,10 @@ footer ul { flex-grow: 1; } +#search { + display: flex; + gap: 6px; + margin: 24px 0px; +} +#search input[type=text] { flex-grow: 1; } + |