diff options
author | Jeffrey Tse <jeffreytse.mail@gmail.com> | 2019-09-24 15:19:05 +0800 |
---|---|---|
committer | Jeffrey Tse <jeffreytse.mail@gmail.com> | 2019-09-24 15:19:05 +0800 |
commit | bc91aa6b7360bf520fd7e0f7a61a934c4d20ea33 (patch) | |
tree | dfe8ec88056fd2283f12e0656d32e056bd86cc6a /_sass/misc | |
parent | 4b70145bedae98e8dc2d34b8e83eca0c669bad87 (diff) |
fix: corrcet hash locate, menu item hilight issues
Diffstat (limited to '_sass/misc')
-rw-r--r-- | _sass/misc/common-list.scss | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/_sass/misc/common-list.scss b/_sass/misc/common-list.scss index 54b7165..e7439a1 100644 --- a/_sass/misc/common-list.scss +++ b/_sass/misc/common-list.scss @@ -15,6 +15,8 @@ } li { + border-bottom: solid 1px #fff; + &:last-child { border-bottom: none; } @@ -29,7 +31,7 @@ transition: background 0.2s; &:hover { - background: mix($theme-color, #fff, 20%); + background: mix($theme-color, #eaeaea, 20%); } } |