diff options
Diffstat (limited to 'src/lib/layout/Loader.svelte')
-rw-r--r-- | src/lib/layout/Loader.svelte | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/layout/Loader.svelte b/src/lib/layout/Loader.svelte index 8347e16..524d975 100644 --- a/src/lib/layout/Loader.svelte +++ b/src/lib/layout/Loader.svelte @@ -41,9 +41,10 @@ left: 0px; top: 0px; transition: width 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 100ms linear; - height: 8px; + height: 6px; z-index: 20; /* add a faint glow effect */ - background: -moz-linear-gradient(top, #16e 0%, #16e 50%, #16e5 50%, #16e0 100%); + /* background: -moz-linear-gradient(top, #16e 0%, #16e 50%, #16e5 50%, #16e0 100%); */ + background: linear-gradient(to bottom, #16e 0%, #16e 50%, #16e5 50%, #16e0 100%); } </style> |