aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/button.scss
diff options
context:
space:
mode:
authorLibravatar Bennett <hello@vantezzen.io>2020-06-21 09:19:59 +0200
committerLibravatar GitHub <noreply@github.com>2020-06-21 12:49:59 +0530
commit0d6d623d1e34cdbff2d46229165b49289a9a0619 (patch)
tree83f6a22a08e354da58adf3ed0393f4d39bca6124 /src/styles/button.scss
parentPrepare and Release/5.6.0 beta.1 (#820) (diff)
downloadferdium-app-0d6d623d1e34cdbff2d46229165b49289a9a0619.tar.gz
ferdium-app-0d6d623d1e34cdbff2d46229165b49289a9a0619.tar.zst
ferdium-app-0d6d623d1e34cdbff2d46229165b49289a9a0619.zip
Add FAB to service dashboard (#824)
* Implement #387 * Fix lint * Upgrade to Electron 9 * Remove dependency on electron-spellchecker * Allow multiple languages to be selected * Fix lint * Don't show spellchecker language chooser for macOS * Fix _requireAuthenticatedUser throwing error on startup * Add FAB
Diffstat (limited to 'src/styles/button.scss')
-rw-r--r--src/styles/button.scss29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/styles/button.scss b/src/styles/button.scss
index 38f8fd26d..cf2568fc4 100644
--- a/src/styles/button.scss
+++ b/src/styles/button.scss
@@ -110,3 +110,32 @@
110 z-index: 9999; 110 z-index: 9999;
111 } 111 }
112} 112}
113
114.ferdi__fab {
115 box-sizing: border-box;
116
117 width: 50px;
118 height: 50px;
119
120 border-radius: 25px;
121 white-space: nowrap;
122 z-index: 9998;
123 list-style: none;
124 background: $theme-brand-primary;
125
126 position: absolute;
127 bottom: 20px;
128 right: 20px;
129
130 cursor: pointer;
131
132 display: flex;
133 justify-content: center;
134 align-items: center;
135
136 a {
137 font-size: 30px;
138 color: #FFFFFF;
139 cursor: pointer;
140 }
141} \ No newline at end of file