diff options
author | jeffreytse <jeffreytse.mail@gmail.com> | 2020-07-12 16:20:34 +0800 |
---|---|---|
committer | jeffreytse <jeffreytse.mail@gmail.com> | 2020-07-12 16:20:34 +0800 |
commit | 8ca77da4d4488d841077c61f6c0be87344eeaddc (patch) | |
tree | c1980457bc18a0f7273253fa9321a0f99dd21e89 /_sass/misc | |
parent | bdbdefaaa230a5c26dcad9231b985c8d40308be4 (diff) |
feat: change common-list style
Diffstat (limited to '_sass/misc')
-rw-r--r-- | _sass/misc/common-list.scss | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/_sass/misc/common-list.scss b/_sass/misc/common-list.scss index e7439a1..d9d4f90 100644 --- a/_sass/misc/common-list.scss +++ b/_sass/misc/common-list.scss @@ -3,10 +3,6 @@ */ .common-list { @include relative-font-size(1.0); - - background: #eaeaea; - box-shadow: 0px 0px 3px 0px #a9a9a9; - border-radius: 3px; min-width: 200px; ul { @@ -15,7 +11,7 @@ } li { - border-bottom: solid 1px #fff; + border-bottom: solid 1px #00000018; &:last-child { border-bottom: none; @@ -26,8 +22,8 @@ justify-content: space-between; padding: 8px 12px; text-decoration: none; - font-weight: 600; - color: mix($theme-color, #666); + font-weight: normal; + color: $text-color; transition: background 0.2s; &:hover { @@ -40,7 +36,7 @@ display: inline-block; border-radius: 10px; align-self: center; - background: darken(invert($theme-color), 20%); + background: #000000bd; padding: 0px 8px; margin-left: 20px; color: $white-color; |