diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-05-19 11:01:06 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-05-21 03:16:51 -0500 |
commit | 181d9cd24bc671178bbbeced674cedd0643cec80 (patch) | |
tree | 73851258b15668aff83f1568a748e7b0534ebe08 | |
parent | f0466aec02c16434c23e032bfb59e031675b4df1 (diff) |
styling for staff quick links
-rw-r--r-- | app/javascript/flavours/glitch/styles/monsterpit.scss | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/styles/monsterpit.scss b/app/javascript/flavours/glitch/styles/monsterpit.scss index 3b3044a68..495c5c179 100644 --- a/app/javascript/flavours/glitch/styles/monsterpit.scss +++ b/app/javascript/flavours/glitch/styles/monsterpit.scss @@ -43,3 +43,34 @@ div.media-caption { } } } + +div.drawer__inner__admin { + margin-left: 10px; + + h2 { + font-weight: 700; + font-size: 18px; + margin-bottom: 10px; + } + + ul { + list-style-type: circle; + margin-left: 20px; + + li { + margin-bottom: 4px; + } + } + + a { + color: darken($secondary-text-color, 15%); + text-decoration: none; + padding: 0; + border-radius: 8px; + + &:hover { + text-decoration: underline; + color: lighten($dark-text-color, 10%); + } + } +} |