Skip to content

Commit d2ac135

Browse files
committed
Remove loading indicator
1 parent a72f601 commit d2ac135

File tree

1 file changed

+0
-29
lines changed

1 file changed

+0
-29
lines changed

src/components/AppSidebar.vue

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@ const store = useStore()
1010

1111
<template>
1212
<nav class="nav">
13-
<div
14-
:class="{ 'nav-loading-indicator-active': store.loadingNotifications }"
15-
class="nav-loading-indicator"
16-
/>
17-
1813
<div class="upper">
1914
<button
2015
class="nav-logo"
@@ -48,15 +43,6 @@ const store = useStore()
4843
</template>
4944

5045
<style lang="scss" scoped>
51-
@keyframes nav-loading-indicator {
52-
0% {
53-
transform: translateY(-200px);
54-
}
55-
100% {
56-
transform: translateY(600px);
57-
}
58-
}
59-
6046
.nav {
6147
height: 100%;
6248
flex-shrink: 0;
@@ -68,21 +54,6 @@ const store = useStore()
6854
position: relative;
6955
overflow: hidden;
7056
71-
&-loading-indicator {
72-
position: absolute;
73-
right: 0;
74-
width: 2px;
75-
height: 200px;
76-
top: 0;
77-
background: radial-gradient(circle, rgba(150,150,150) 0%, rgba(255,255,255,0) 100%);
78-
visibility: hidden;
79-
80-
&-active {
81-
visibility: visible;
82-
animation: 1s nav-loading-indicator linear infinite;
83-
}
84-
}
85-
8657
.upper,
8758
.lower {
8859
display: flex;

0 commit comments

Comments
 (0)