aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/layout.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/styles/layout.scss')
-rw-r--r--src/styles/layout.scss21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/styles/layout.scss b/src/styles/layout.scss
index 173ca3184..591f7c54b 100644
--- a/src/styles/layout.scss
+++ b/src/styles/layout.scss
@@ -204,6 +204,27 @@ body.win32:not(.isFullScreen) .app .app__content {
204 } 204 }
205} 205}
206 206
207@keyframes isDownloadingFade {
208 50% {
209 color: $theme-brand-primary;
210 }
211}
212
213@keyframes isDownloadingDoneFade {
214 50% {
215 color: green;
216 }
217}
218
219.sidebar__button--downloading {
220 animation: isDownloadingFade 1s cubic-bezier(0.755, 0.05, 0.855, 0.06)
221 infinite;
222}
223
224.sidebar__button--done {
225 animation: isDownloadingDoneFade 0.2s linear infinite;
226}
227
207.grid .grid__row { 228.grid .grid__row {
208 display: flex; 229 display: flex;
209 flex-direction: row; 230 flex-direction: row;