1- <script setup lang="ts" >
1+ <script setup>
22import ProgressDots from " ./components/ProgressDots.vue" ;
33import RotateDot from " ./components/RotateDot.vue" ;
44import ThreeBounce from " ./components/ThreeBounce.vue" ;
55import RotateTwoDots from " ./components/RotateTwoDots.vue" ;
6+ import SquareFill from " ./components/SquareFill.vue" ;
7+ import RotateSquare from " ./components/RotateSquare.vue" ;
8+ import JumpingHeart from " ./components/JumpingHeart.vue" ;
9+ import RotateCircle from " ./components/RotateCircle.vue" ;
10+ import ArcRotation from " ./components/ArcRotation.vue" ;
11+ import Clock from " ./components/Clock.vue" ;
12+ import Wave from " ./components/Wave.vue" ;
13+ import TwinCircle from " ./components/TwinCircle.vue" ;
14+ import Pacman from " ./components/Pacman.vue" ;
615 </script >
716
817<template >
9- <div class =" h-screen my-20 flex flex-nowrap" >
18+ <div class =" h-screen my-20 flex flex-wrap container m-16" >
19+ <RotateSquare class =" wrapper" />
1020 <ProgressDots class =" wrapper" />
11- <RotateDot class =" relative wrapper" />
21+ <JumpingHeart class =" wrapper" />
22+ <RotateDot class =" wrapper" />
23+ <Pacman class =" wrapper" />
1224 <ThreeBounce class =" wrapper" />
25+ <ArcRotation class =" wrapper" />
1326 <RotateTwoDots class =" wrapper" />
27+ <SquareFill class =" wrapper" />
28+ <Clock class =" wrapper" />
29+ <RotateCircle class =" wrapper" />
30+ <Wave class =" wrapper" />
31+ <TwinCircle class =" wrapper" />
1432 </div >
1533</template >
1634
1735
1836<style scoped lang="postcss">
1937.wrapper {
20- @apply flex gap-4 h-64 w-64 bg-pink-100 items-center justify-center m-4 ;
38+ @apply relative flex gap-2 h-64 w-64 bg-pink-100 items-center justify-center m-4;
2139}
2240 </style >
0 commit comments