From 589bd275d1db11e7f24316ffeaba9cac16db6f3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A6=BA=E7=8B=A8?= <18119604035@163.com> Date: Fri, 3 Mar 2023 14:45:54 +0800 Subject: [PATCH] =?UTF-8?q?=E7=99=BB=E5=BD=95=E9=A1=B5=E9=9D=A2=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F=E9=87=8D=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/index.less | 77 ++++++++++++++++++++++++++++++++++++++++++++ src/utils/index.less | 75 ------------------------------------------ 2 files changed, 77 insertions(+), 75 deletions(-) diff --git a/src/index.less b/src/index.less index ec2585e..4254615 100644 --- a/src/index.less +++ b/src/index.less @@ -11,3 +11,80 @@ code { font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace; } + +.mr-16 { + margin-right: 16px; +} + +.mb-24 { + margin-bottom: 24px; +} + +.mr-24 { + margin-right: 24px; +} + +.mt-50 { + margin-top: 50px; +} + +.mb-50 { + margin-bottom: 50px; +} + +.float-left { + width: 100%; + height: auto; + float: left; +} + +.d-flex { + display: flex; + align-items: center; +} + +.j-flex { + display: flex; + justify-content: center; +} + +.d-j-flex { + display: flex; + align-items: center; + justify-content: center; +} + +.j-r-flex { + display: flex; + justify-content: right; +} + +.j-b-flex { + display: flex; + align-items: center; + justify-content: space-between; +} + +.c-flex { + display: flex; + flex-direction: column; + align-items: center; +} + +.primary { + color: #ff4d4f; +} + +.c-red { + color: #ff4d4f; +} + +.playedu-main-body { + width: 100%; + height: auto; + float: left; + background-color: white; + box-sizing: border-box; + padding: 24px; + border-radius: 12px; +} \ No newline at end of file diff --git a/src/utils/index.less b/src/utils/index.less index 3872d05..2afb09d 100644 --- a/src/utils/index.less +++ b/src/utils/index.less @@ -34,79 +34,4 @@ color: white !important; } -.mr-16 { - margin-right: 16px; -} -.mb-24 { - margin-bottom: 24px; -} - -.mr-24 { - margin-right: 24px; -} - -.mt-50 { - margin-top: 50px; -} - -.mb-50 { - margin-bottom: 50px; -} - -.float-left { - width: 100%; - height: auto; - float: left; -} - -.d-flex { - display: flex; - align-items: center; -} - -.j-flex { - display: flex; - justify-content: center; -} - -.d-j-flex { - display: flex; - align-items: center; - justify-content: center; -} - -.j-r-flex { - display: flex; - justify-content: right; -} - -.j-b-flex { - display: flex; - align-items: center; - justify-content: space-between; -} - -.c-flex { - display: flex; - flex-direction: column; - align-items: center; -} - -.primary { - color: #ff4d4f; -} - -.c-red { - color: #ff4d4f; -} - -.playedu-main-body { - width: 100%; - height: auto; - float: left; - background-color: white; - box-sizing: border-box; - padding: 24px; - border-radius: 12px; -}