From 54849757852f6ab40eb17afbd03d1d839b60a38d Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Mon, 13 Nov 2023 17:09:15 +0800
Subject: [PATCH] 重复定时和连续执行
---
src/styles/flex.style.scss | 39 ++++++++++++++++++++++++++++++++++++---
1 files changed, 36 insertions(+), 3 deletions(-)
diff --git a/src/styles/flex.style.scss b/src/styles/flex.style.scss
index 2a0f3eb..a231baf 100644
--- a/src/styles/flex.style.scss
+++ b/src/styles/flex.style.scss
@@ -6,6 +6,16 @@
align-items: center;
justify-content: center;
}
+.text-center {
+ text-align: center
+}
+.f12 {
+ font-size: 12px
+}
+
+.f10 {
+ font-size: 10px
+}
// .border-bottom {
// position: relative;
// box-sizing: border-box;
@@ -41,6 +51,9 @@
.flex-align-center {
align-items: center;
}
+.flex-direction-column {
+ flex-direction: column;
+}
.flex-justify-start {
justify-content: flex-start;
@@ -73,6 +86,9 @@
.flex-shrink-1 {
flex-shrink: 1;
}
+.flex-wrap {
+ flex-wrap: wrap;
+}
//width
.width-100vw {
@@ -91,7 +107,9 @@
.height-100 {
height: 100%;
}
-
+.w100 {
+ width: 100%;
+}
//margin
m-5 {
margin: -5px !important;
@@ -120,7 +138,15 @@
.mr-5 {
margin-right: -5px !important;
}
-
+.mr-10 {
+ margin-right: 10px !important;
+}
+.mr-15 {
+ margin-right: 15px !important;
+}
+.mr-20 {
+ margin-right: 20px !important;
+}
.m0 {
margin: 0px !important;
}
@@ -152,7 +178,14 @@
.mb5 {
margin-bottom: 5px !important;
}
-
+.active-color {
+ border: none !important;
+ background-color: #1fa3f6 !important;
+}
+.unactive-color {
+ border: none !important;
+ background-color: #5d5f61 !important;
+}
.ml5 {
margin-left: 5px !important;
}
--
Gitblit v1.9.3