diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-01-06 22:09:55 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-01-06 22:09:55 +0100 |
commit | 989c3f40022bc65d69915be597acda3c4d58de60 (patch) | |
tree | 791dde58746d0a178a82a9e397f19fcd725f7653 /app/assets/stylesheets | |
parent | 1bfbce7b4542739a3601e0722a975b450e86bfb2 (diff) |
Add tab bar alternative to desktop UI, upgrade react & react-redux
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r-- | app/assets/stylesheets/components.scss | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/assets/stylesheets/components.scss b/app/assets/stylesheets/components.scss index c2fcd76b3..69595995c 100644 --- a/app/assets/stylesheets/components.scss +++ b/app/assets/stylesheets/components.scss @@ -349,6 +349,28 @@ width: 280px; } +.drawer__inner { + background: linear-gradient(rgba(69, 75, 94, 1), rgba(69, 75, 94, 0.65)); +} + +.drawer__header { + flex: 0 0 auto; + font-size: 16px; + background: darken(#454b5e, 5%); + margin-bottom: 10px; + display: flex; + flex-direction: row; + + a { + transition: all 100ms ease-in; + + &:hover { + background: darken(#454b5e, 10%); + transition: all 200ms ease-out; + } + } +} + .column, .drawer { margin-left: 5px; margin-right: 5px; |