diff options
author | Alex Shpak <alex-shpak@users.noreply.github.com> | 2020-03-07 14:03:46 +0100 |
---|---|---|
committer | Alex Shpak <alex-shpak@users.noreply.github.com> | 2020-03-07 14:03:46 +0100 |
commit | 3953fca63666af0ed8cc7c0a0a2b830b95d9a584 (patch) | |
tree | 25058e1b764d1263f685fe4e1ea205f331223306 /assets/_main.scss | |
parent | 7df4251b7256dbf1efdd197f158d70ea8c761894 (diff) |
#155, Move collapse indicator to the right side
Diffstat (limited to 'assets/_main.scss')
-rw-r--r-- | assets/_main.scss | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/assets/_main.scss b/assets/_main.scss index 79ccb05..a33112c 100644 --- a/assets/_main.scss +++ b/assets/_main.scss @@ -55,6 +55,7 @@ aside nav ul { li { margin: 1em 0; + position: relative; } a { @@ -113,6 +114,7 @@ ul.pagination { a { color: inherit; + word-wrap: break-word; } a.active { @@ -121,7 +123,8 @@ ul.pagination { a.collapsed::after { content: "▸"; - margin-left: $padding-8; + position: absolute; + right: 0; } } |