diff options
author | amzrk2 | 2020-07-15 13:52:20 +0800 |
---|---|---|
committer | amzrk2 | 2020-07-15 13:52:20 +0800 |
commit | ca1b39119cd3551797e2e1b14c2166b5d694cde9 (patch) | |
tree | 7055145540da395e41983ac26849a152b11d9b0a /assets/scss/_global.scss | |
parent | b57c00e0f849a44066cfe152ee4551c6136680a4 (diff) | |
download | hugo-theme-fuji-ca1b39119cd3551797e2e1b14c2166b5d694cde9.tar.gz hugo-theme-fuji-ca1b39119cd3551797e2e1b14c2166b5d694cde9.tar.bz2 hugo-theme-fuji-ca1b39119cd3551797e2e1b14c2166b5d694cde9.zip |
Add sticky table of contents
Diffstat (limited to 'assets/scss/_global.scss')
-rw-r--r-- | assets/scss/_global.scss | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/assets/scss/_global.scss b/assets/scss/_global.scss index 0c47ac2..6fd62bd 100644 --- a/assets/scss/_global.scss +++ b/assets/scss/_global.scss @@ -19,6 +19,15 @@ main { flex: 1 1 auto; } +.container-lg { + display: flex; + flex-direction: row; + + @media screen and (max-width: $width-md) { + flex-direction: column; + } +} + // remove text decoration a:hover { text-decoration: none !important; |