summaryrefslogtreecommitdiffstats
path: root/src/styles/layout.scss
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-11-11 19:30:03 +0100
committerLibravatar GitHub <noreply@github.com>2017-11-11 19:30:03 +0100
commit0643ceed47d4ffa3aae1ec559af584b575024947 (patch)
tree6c114cdb1d5f7aec869e8b254ed1dfb2ba03b13f /src/styles/layout.scss
parentMerge pull request #255 from meetfranz/feature/117-disable-gpu (diff)
parentslightly reduce tab height (diff)
downloadferdium-app-0643ceed47d4ffa3aae1ec559af584b575024947.tar.gz
ferdium-app-0643ceed47d4ffa3aae1ec559af584b575024947.tar.zst
ferdium-app-0643ceed47d4ffa3aae1ec559af584b575024947.zip
Merge pull request #252 from meetfranz/feature/mute-service
[WIP] Mute services
Diffstat (limited to 'src/styles/layout.scss')
-rw-r--r--src/styles/layout.scss33
1 files changed, 18 insertions, 15 deletions
diff --git a/src/styles/layout.scss b/src/styles/layout.scss
index d87df2684..afdd7dec7 100644
--- a/src/styles/layout.scss
+++ b/src/styles/layout.scss
@@ -42,6 +42,7 @@ html {
42 z-index: 200; 42 z-index: 200;
43 text-align: center; 43 text-align: center;
44 color: $theme-text-color; 44 color: $theme-text-color;
45 padding-bottom: 10px;
45 46
46 .sidebar__add-service { 47 .sidebar__add-service {
47 width: 32px; 48 width: 32px;
@@ -52,26 +53,28 @@ html {
52 color: $theme-gray-light; 53 color: $theme-gray-light;
53 } 54 }
54 55
55 .sidebar__settings-button { 56 .sidebar__button {
56 height: auto; 57 width: $theme-sidebar-width;
57 padding: 20px 0; 58 padding: 7px 0;
58 font-size: 12px; 59 font-size: 24px;
59 position: relative; 60 position: relative;
61 color: $theme-gray-light;
60 62
61 .emoji { 63 &:hover {
62 position: absolute; 64 color: darken($theme-gray-light, 10%);
63 top: 18px; 65 }
64 right: 12px;
65 66
66 img { 67 &:active {
67 width: 18px; 68 color: lighten($theme-gray-light, 10%);
68 }
69 } 69 }
70 }
71 70
72 .sidebar__logo { 71 &.is-muted {
73 width: 40px; 72 color: $theme-brand-primary;
74 height: auto; 73 }
74
75 &--new-service {
76 padding-bottom: 6px;
77 }
75 } 78 }
76 79
77 & > div { 80 & > div {