Bläddra i källkod

:bug: fixed syntax for postcss in profile

tags/0.0.1
J 4 år sedan
förälder
incheckning
2f04d20636
1 ändrade filer med 24 tillägg och 37 borttagningar
  1. 24
    37
      frontend/src/views/Profile.vue

+ 24
- 37
frontend/src/views/Profile.vue Visa fil

@@ -86,7 +86,7 @@ export default {
86 86
 };
87 87
 </script>
88 88
 
89
-<style>
89
+<style lang="postcss">
90 90
 html
91 91
   background-color: #e90d77
92 92
 
@@ -199,15 +199,12 @@ html
199 199
   box-shadow: 0 0 5px #e90d77, 0 0 25px #e90d77, 0 0 50px #e90d77,
200 200
     0 0 100px #e90d77
201 201
 
202
-@keyframes btn-anim1 {
203
-  0% {
204
-    left: -100%;
205
-  }
206
-  50%,
207
-  100% {
208
-    left: 100%;
209
-  }
210
-}
202
+@keyframes btn-anim1
203
+  0%
204
+    left: -100%
205
+  50%, 100%
206
+    left: 100%
207
+  
211 208
 .login__box button span:nth-child(2)
212 209
   top: -100%
213 210
   right: 0
@@ -217,15 +214,12 @@ html
217 214
   animation: btn-anim2 1s linear infinite
218 215
   animation-delay: 0.25s
219 216
 
220
-@keyframes btn-anim2 {
221
-  0% {
222
-    top: -100%;
223
-  }
224
-  50%,
225
-  100% {
226
-    top: 100%;
227
-  }
228
-}
217
+@keyframes btn-anim2
218
+  0%
219
+    top: -100%
220
+  50%, 100%
221
+    top: 100%
222
+
229 223
 .login__box button span:nth-child(3) 
230 224
   bottom: 0
231 225
   right: -100%
@@ -235,15 +229,12 @@ html
235 229
   animation: btn-anim3 1s linear infinite
236 230
   animation-delay: 0.5s
237 231
 
238
-@keyframes btn-anim3 {
239
-  0% {
240
-    right: -100%;
241
-  }
242
-  50%,
243
-  100% {
244
-    right: 100%;
245
-  }
246
-}
232
+@keyframes btn-anim3
233
+  0%
234
+    right: -100%
235
+  50%, 100%
236
+    right: 100%
237
+  
247 238
 .login__box a span:nth-child(4)
248 239
   bottom: -100%
249 240
   left: 0
@@ -253,13 +244,9 @@ html
253 244
   animation: btn-anim4 1s linear infinite
254 245
   animation-delay: 0.75s
255 246
 
256
-@keyframes btn-anim4 {
257
-  0% {
258
-    bottom: -100%;
259
-  }
260
-  50%,
261
-  100% {
262
-    bottom: 100%;
263
-  }
264
-}
247
+@keyframes btn-anim4
248
+  0%
249
+    bottom: -100%
250
+  50%, 100%
251
+    bottom: 100%
265 252
 </style>

Laddar…
Avbryt
Spara