We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38327eb commit 3393838Copy full SHA for 3393838
assets/sass/main.scss
@@ -247,7 +247,7 @@
247
}
248
249
250
- .table-of-contents {
+ ul.table-of-contents {
251
position: fixed;
252
top: 1em;
253
right: 1em;
@@ -257,24 +257,27 @@
257
border-radius: _size(border-radius);
258
min-width: 0;
259
min-height: 0;
260
- content: 'NAVIGATION';
+ list-style-type: none;
261
+ font-size: 0.8em;
262
+ opacity: 1;
263
- ul {
- list-style: none;
264
- font-size: 0.8em;
265
- opacity: 1;
266
- }
267
268
&:hover {
269
- content: '';
+ font-size: 0;
270
271
272
&:not(:hover) {
273
+ li {
274
margin: 0;
275
padding: 0;
276
opacity: 0;
277
+
+ &::before {
+ min-width: 1em;
278
+ min-height: 1em;
279
+ content: 'NAVIGATION';
280
+ }
281
282
283
0 commit comments