diff options
author | utvk <utvk@users.noreply.github.com> | 2017-02-11 23:38:22 +0100 |
---|---|---|
committer | utvk <utvk@users.noreply.github.com> | 2017-02-11 23:39:10 +0100 |
commit | 6ad3b58f43b577c648b696510a5b9fa5739dad24 (patch) | |
tree | c9b44d3ee9584bf226e436145c0546e97765e90e | |
parent | e147f4a2656a6b40b7737044428f830a1ca5f733 (diff) |
adjust color on profile menu
-rw-r--r-- | assets/stylesheets/responsive/custom.scss | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/assets/stylesheets/responsive/custom.scss b/assets/stylesheets/responsive/custom.scss index 1a1c331..d4d0aff 100644 --- a/assets/stylesheets/responsive/custom.scss +++ b/assets/stylesheets/responsive/custom.scss @@ -978,7 +978,12 @@ h2 { background-image: url(/assets/homepage-background.jpg); } +/* logged in menu */ .js-loaded .navigation .logged-in-menu { width: auto; - background-color: $color_primary; + background-color: darken($color_primary, 10%); +} + +.dashboard-profile__name, .dashboard-profile__email { + color: #ccc; } |