From 9159cd0acac3fa1536aa0f8d0394fe56950093ed Mon Sep 17 00:00:00 2001 From: Masahiko AMANO Date: Sun, 29 Jan 2023 13:55:17 +0300 Subject: [PATCH] refactor(web): move form and .button-flex styles to general.css --- web/public/css/auth.css | 14 -------------- web/public/css/general.css | 14 ++++++++++++++ 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/web/public/css/auth.css b/web/public/css/auth.css index 7dee003..2e9149c 100644 --- a/web/public/css/auth.css +++ b/web/public/css/auth.css @@ -1,17 +1,3 @@ -form { - margin: 0; - width: 100%; - display: flex; - flex-direction: column; - justify-content: center; -} - -.button-flex { - display: flex; - flex-direction: row; - justify-content: space-between; -} - .btn-secondary { display: none; } diff --git a/web/public/css/general.css b/web/public/css/general.css index acc0d66..c167241 100644 --- a/web/public/css/general.css +++ b/web/public/css/general.css @@ -85,3 +85,17 @@ h3 { font-family: Secular One, sans-serif; font-size: 3vw; } + +form { + margin: 0; + width: 100%; + display: flex; + flex-direction: column; + justify-content: center; +} + +.button-flex { + display: flex; + flex-direction: row; + justify-content: space-between; +}