Просмотр исходного кода

remove LoadingSpinnerPulse component

Tatsuya Ise 2 лет назад
Родитель
Сommit
282c853da5

+ 0 - 97
apps/app/src/components/LoadingSpinnerPulse.module.scss

@@ -1,97 +0,0 @@
-// refs: https://loading.io/css/
-// The sample size is too large, so adjust this size to a smaller.
-.lds-default {
-  position: relative;
-  display: inline-block;
-  width: 1.5em;
-  height: 1.5em;
-}
-
-.lds-default div {
-  position: absolute;
-  width: 8.5%;
-  height: 8.5%;
-  background: currentColor;
-  border-radius: 50%;
-  animation: lds-default 1.2s linear infinite;
-}
-
-.lds-default div:nth-child(1) {
-  top: 46.25%;
-  left: 82.5%;
-  animation-delay: 0s;
-}
-
-.lds-default div:nth-child(2) {
-  top: 27.5%;
-  left: 77.5%;
-  animation-delay: -0.1s;
-}
-
-.lds-default div:nth-child(3) {
-  top: 13.75%;
-  left: 65%;
-  animation-delay: -0.2s;
-}
-
-.lds-default div:nth-child(4) {
-  top: 8.75%;
-  left: 46.25%;
-  animation-delay: -0.3s;
-}
-
-.lds-default div:nth-child(5) {
-  top: 13.75%;
-  left: 27.5%;
-  animation-delay: -0.4s;
-}
-
-.lds-default div:nth-child(6) {
-  top: 27.5%;
-  left: 13.25%;
-  animation-delay: -0.5s;
-}
-
-.lds-default div:nth-child(7) {
-  top: 46.25%;
-  left: 8.75%;
-  animation-delay: -0.6s;
-}
-
-.lds-default div:nth-child(8) {
-  top: 65%;
-  left: 13.75%;
-  animation-delay: -0.7s;
-}
-
-.lds-default div:nth-child(9) {
-  top: 77.5%;
-  left: 27.5%;
-  animation-delay: -0.8s;
-}
-
-.lds-default div:nth-child(10) {
-  top: 82.5%;
-  left: 46.25%;
-  animation-delay: -0.9s;
-}
-
-.lds-default div:nth-child(11) {
-  top: 77.5%;
-  left: 65%;
-  animation-delay: -1s;
-}
-
-.lds-default div:nth-child(12) {
-  top: 65%;
-  left: 77.5%;
-  animation-delay: -1.1s;
-}
-@keyframes lds-default {
-  0%, 20%, 80%, 100% {
-    transform: scale(1);
-  }
-  50% {
-    transform: scale(1.5);
-  }
-}

+ 0 - 9
apps/app/src/components/LoadingSpinnerPulse.tsx

@@ -1,9 +0,0 @@
-import React, { type ComponentPropsWithoutRef } from 'react';
-
-import styles from './LoadingSpinnerPulse.module.scss';
-
-export const LoadingSpinnerPulse = ({ className }: ComponentPropsWithoutRef<'div'>): JSX.Element => (
-  <div className={`align-bottom ms-1 me-1 ${styles['lds-default']} ${className}`}>
-    <div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div>
-  </div>
-);