Ver código fonte

:bug: fixed syntax for postcss in profile

tags/0.0.1
J 4 anos atrás
pai
commit
2f04d20636
1 arquivos alterados com 24 adições e 37 exclusões
  1. 24
    37
      frontend/src/views/Profile.vue

+ 24
- 37
frontend/src/views/Profile.vue Ver arquivo

86
 };
86
 };
87
 </script>
87
 </script>
88
 
88
 
89
-<style>
89
+<style lang="postcss">
90
 html
90
 html
91
   background-color: #e90d77
91
   background-color: #e90d77
92
 
92
 
199
   box-shadow: 0 0 5px #e90d77, 0 0 25px #e90d77, 0 0 50px #e90d77,
199
   box-shadow: 0 0 5px #e90d77, 0 0 25px #e90d77, 0 0 50px #e90d77,
200
     0 0 100px #e90d77
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
 .login__box button span:nth-child(2)
208
 .login__box button span:nth-child(2)
212
   top: -100%
209
   top: -100%
213
   right: 0
210
   right: 0
217
   animation: btn-anim2 1s linear infinite
214
   animation: btn-anim2 1s linear infinite
218
   animation-delay: 0.25s
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
 .login__box button span:nth-child(3) 
223
 .login__box button span:nth-child(3) 
230
   bottom: 0
224
   bottom: 0
231
   right: -100%
225
   right: -100%
235
   animation: btn-anim3 1s linear infinite
229
   animation: btn-anim3 1s linear infinite
236
   animation-delay: 0.5s
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
 .login__box a span:nth-child(4)
238
 .login__box a span:nth-child(4)
248
   bottom: -100%
239
   bottom: -100%
249
   left: 0
240
   left: 0
253
   animation: btn-anim4 1s linear infinite
244
   animation: btn-anim4 1s linear infinite
254
   animation-delay: 0.75s
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
 </style>
252
 </style>

Carregando…
Cancelar
Salvar