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 @@
-
+
@@ -11,16 +11,16 @@ export default {
props: {
color: {
type: String,
- default: '#90cdf4'
+ default: '#90cdf4',
},
dotWidth: {
type: String,
- default: '18px'
+ default: '18px',
},
width: {
type: String,
- default: '70px'
- }
+ default: '70px',
+ },
},
computed: {
@@ -28,10 +28,10 @@ export default {
return {
backgroundColor: this.color,
height: this.dotWidth,
- width: this.dotWidth
+ width: this.dotWidth,
}
- }
- }
+ },
+ },
}
diff --git a/client-new/src/components/Common/LazyBackgroundImage.vue b/client-new/src/components/Common/LazyBackgroundImage.vue
index 4b2212b..2cca845 100644
--- a/client-new/src/components/Common/LazyBackgroundImage.vue
+++ b/client-new/src/components/Common/LazyBackgroundImage.vue
@@ -14,34 +14,34 @@ export default {
props: {
imageSource: {
type: String,
- required: true
+ required: true,
},
imageClass: {
type: String,
required: false,
- default: ''
+ default: '',
},
backgroundSize: {
type: String,
required: false,
- default: 'cover'
+ default: 'cover',
},
moreBackgrounds: {
type: String,
required: false,
- default: ''
+ default: '',
},
transitionName: {
type: String,
required: false,
- default: ''
- }
+ default: '',
+ },
},
data() {
return {
imageState: 'loading',
- asyncImage: new Image()
+ asyncImage: new Image(),
}
},
@@ -51,7 +51,7 @@ export default {
return `background-image: ${this.moreBackgrounds} url(${this.asyncImage.src}); background-size: ${this.backgroundSize}`
}
return ''
- }
+ },
},
mounted() {
@@ -68,7 +68,7 @@ export default {
},
imageOnLoad() {
this.imageState = 'loaded'
- }
- }
+ },
+ },
}
diff --git a/client-new/src/components/Common/Ripple.vue b/client-new/src/components/Common/Ripple.vue
index 8cbb00e..5df279c 100644
--- a/client-new/src/components/Common/Ripple.vue
+++ b/client-new/src/components/Common/Ripple.vue
@@ -14,7 +14,7 @@
left: ripple.left,
width: ripple.width,
height: ripple.height,
- background: color
+ background: color,
}"
>
@@ -27,8 +27,8 @@ export default {
props: {
color: {
type: String,
- default: 'rgba(255, 255, 255, 0.3)'
- }
+ default: 'rgba(255, 255, 255, 0.3)',
+ },
},
data() {
@@ -61,17 +61,17 @@ export default {
height: `${this.rippleWidth}px`,
left: `${e.clientX - left - this.halfRippleWidth}px`,
top: `${e.clientY - top - this.halfRippleWidth}px`,
- id: rippleId
+ id: rippleId,
})
// Remove ripple
setTimeout(() => {
- this.ripples = this.ripples.filter(r => r.id !== rippleId)
+ this.ripples = this.ripples.filter((r) => r.id !== rippleId)
}, 400)
},
purgeRipples() {
this.ripples = []
- }
- }
+ },
+ },
}
diff --git a/client-new/src/components/Common/Tooltip.vue b/client-new/src/components/Common/Tooltip.vue
index ee98dfa..a4814b6 100644
--- a/client-new/src/components/Common/Tooltip.vue
+++ b/client-new/src/components/Common/Tooltip.vue
@@ -25,7 +25,7 @@
-
+
\ 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 @@
diff --git a/client-new/src/components/Form/SearchForm.vue b/client-new/src/components/Form/SearchForm.vue
index 6227856..846cf7f 100644
--- a/client-new/src/components/Form/SearchForm.vue
+++ b/client-new/src/components/Form/SearchForm.vue
@@ -1,13 +1,13 @@