diff --git a/client-new/src/assets/css/base.css b/client-new/src/assets/css/base.css index 3b8eb10..e009b69 100644 --- a/client-new/src/assets/css/base.css +++ b/client-new/src/assets/css/base.css @@ -2,12 +2,12 @@ ::-webkit-scrollbar { width: 8px; - height: 8px + height: 8px; } ::-webkit-scrollbar, ::-webkit-scrollbar-track { - background: rgba(23, 49, 79, .6); + background: rgba(23, 49, 79, 0.6); } .light-scrollbar::-webkit-scrollbar, @@ -16,8 +16,8 @@ } ::-webkit-scrollbar-thumb { - background-color: rgba(194, 217, 254, .6); - border-radius: 8px + background-color: rgba(194, 217, 254, 0.6); + border-radius: 8px; } ::selection { @@ -29,7 +29,7 @@ } .min-w-1200 { - min-width: 1200px;; + min-width: 1200px; } .page-wrapper { @@ -52,11 +52,11 @@ button:focus { } .bg-gradient { - background: linear-gradient(180deg, #2C5282 0%, rgba(44, 82, 130, 0) 100%); + background: linear-gradient(180deg, #2c5282 0%, rgba(44, 82, 130, 0) 100%); } .bg-gradient-x { - background: linear-gradient(270deg, rgba(44,82,130,1) 0%, rgba(44,82,130,0) 100%); + background: linear-gradient(270deg, rgba(44, 82, 130, 1) 0%, rgba(44, 82, 130, 0) 100%); } .text-overflow { @@ -64,11 +64,7 @@ button:focus { } .heading { - background: linear-gradient( - to top, - rgb(34, 92, 155) 0%, - rgb(34, 92, 135) 100% - ); + background: linear-gradient(to top, rgb(34, 92, 155) 0%, rgb(34, 92, 135) 100%); box-shadow: rgba(235, 248, 255, 0.1) 0px -1px inset; } diff --git a/client-new/src/assets/css/match.css b/client-new/src/assets/css/match.css index bd9f24a..8043259 100644 --- a/client-new/src/assets/css/match.css +++ b/client-new/src/assets/css/match.css @@ -1,30 +1,18 @@ /* purgecss start ignore */ .Win { - background-image: linear-gradient( - 90deg, - rgba(1, 97, 28, 0.3) 0%, - rgba(44, 82, 130, 0) 45% - ); + background-image: linear-gradient(90deg, rgba(1, 97, 28, 0.3) 0%, rgba(44, 82, 130, 0) 45%); } .Fail { - background-image: linear-gradient( - 90deg, - rgba(140, 0, 0, 0.3) 0%, - rgba(44, 82, 130, 0) 45% - ); + background-image: linear-gradient(90deg, rgba(140, 0, 0, 0.3) 0%, rgba(44, 82, 130, 0) 45%); } .Remake { - background-image: linear-gradient( - 90deg, - rgba(233, 169, 75, 0.3) 0%, - rgba(44, 82, 130, 0) 45% - ); + background-image: linear-gradient(90deg, rgba(233, 169, 75, 0.3) 0%, rgba(44, 82, 130, 0) 45%); } .ban::after { - content: ""; + content: ''; position: absolute; left: 0px; top: 50%; diff --git a/client-new/src/assets/css/transition.css b/client-new/src/assets/css/transition.css index 6ca5916..66aa10f 100644 --- a/client-new/src/assets/css/transition.css +++ b/client-new/src/assets/css/transition.css @@ -1,16 +1,20 @@ /* purgecss start ignore */ /* Fade transitions */ -.fade-enter-active, .fade-leave-active { +.fade-enter-active, +.fade-leave-active { transition: opacity 2s; } -.fade-fast-enter-active, .fade-fast-leave-active { - transition: opacity .3s; +.fade-fast-enter-active, +.fade-fast-leave-active { + transition: opacity 0.3s; } -.fade-fast-enter, .fade-fast-leave-to, -.fade-enter, .fade-leave-to { +.fade-fast-enter, +.fade-fast-leave-to, +.fade-enter, +.fade-leave-to { opacity: 0; } @@ -31,11 +35,13 @@ @apply transition duration-500 ease-in-out; } -.tab-enter, .tab-enter-leave-to { +.tab-enter, +.tab-enter-leave-to { @apply opacity-0; } -.tab-enter-to, .tab-enter-leave { +.tab-enter-to, +.tab-enter-leave { @apply opacity-100; } diff --git a/client-new/src/components/Common/CubeLoader.vue b/client-new/src/components/Common/CubeLoader.vue index 4736278..f15b494 100644 --- a/client-new/src/components/Common/CubeLoader.vue +++ b/client-new/src/components/Common/CubeLoader.vue @@ -2,7 +2,7 @@
@@ -16,17 +16,17 @@ export default { props: { color: { type: String, - default: '#bee3f8' + default: '#bee3f8', }, size: { type: String, - default: '30px' + default: '30px', }, margin: { type: String, - default: '0 auto' - } - } + default: '0 auto', + }, + }, } @@ -36,7 +36,7 @@ export default { } .cube:before { - content: ""; + content: ''; @apply absolute top-0 left-0 w-full h-full bg-blue-300; animation: cubeAngle 2.4s infinite linear both; transform-origin: 100% 100%; diff --git a/client-new/src/components/Common/DotsLoader.vue b/client-new/src/components/Common/DotsLoader.vue index c1a80d6..ae975bc 100644 --- a/client-new/src/components/Common/DotsLoader.vue +++ b/client-new/src/components/Common/DotsLoader.vue @@ -1,5 +1,5 @@ - + \ No newline at end of file + diff --git a/client-new/src/components/Form/LoadingButton.vue b/client-new/src/components/Form/LoadingButton.vue index 108803b..dd415fa 100644 --- a/client-new/src/components/Form/LoadingButton.vue +++ b/client-new/src/components/Form/LoadingButton.vue @@ -1,7 +1,7 @@