From dfc97f90564b19078a885d28cdca0385dd8a79d3 Mon Sep 17 00:00:00 2001 From: zhangyahui Date: Wed, 4 Feb 2026 15:11:47 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E5=85=A8=E5=B1=80=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/css/style.css | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/src/assets/css/style.css b/src/assets/css/style.css index c96084e..2fee134 100644 --- a/src/assets/css/style.css +++ b/src/assets/css/style.css @@ -33,3 +33,32 @@ body, background-image: url('@/assets/images/home-bg.png'); background-size: 100% 100%; } + +.flex { + display: flex; +} + +.flex-col { + flex-direction: column; +} + +.flex-center { + justify-content: center; + align-items: center; +} + +.flex-1 { + flex: 1; +} + +.align-center { + align-items: center; +} + +.justify-center { + justify-content: center; +} + +.space-between { + justify-content: space-between; +}