From 60ff32a8a36e93efb158872e4aec332f4a0e2fde Mon Sep 17 00:00:00 2001 From: chaeseungyun Date: Tue, 9 Jul 2024 09:29:17 +0900 Subject: [PATCH] =?UTF-8?q?remove:=20=EB=B6=88=ED=95=84=EC=9A=94=ED=95=9C?= =?UTF-8?q?=20scss=20=ED=8C=8C=EC=9D=BC=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../FindPassword/Verify/index.module.scss | 75 ------------------- 1 file changed, 75 deletions(-) delete mode 100644 src/page/Auth/FindPassword/Verify/index.module.scss diff --git a/src/page/Auth/FindPassword/Verify/index.module.scss b/src/page/Auth/FindPassword/Verify/index.module.scss deleted file mode 100644 index f214a248..00000000 --- a/src/page/Auth/FindPassword/Verify/index.module.scss +++ /dev/null @@ -1,75 +0,0 @@ -.container { - height: calc(100vh - 30vh); -} - -.section { - display: flex; - flex-direction: column; - justify-content: center; - gap: 10px; - margin-top: 25px; -} - -.title { - font-weight: bold; -} - -.verify { - display: flex; - justify-content: space-between; -} - -.input { - background-color: #f5f5f5; - border-radius: 4px; - border: none; - height: 50px; - padding: 2px 10px; - box-sizing: border-box; - - &--verify { - background-color: #f5f5f5; - border-radius: 4px; - border: none; - height: 50px; - padding: 2px 10px; - box-sizing: border-box; - width: 55%; - } -} - -.button { - background-color: #eeeeee; - border-radius: 4px; - height: 50px; - width: 40%; - - &--active { - background-color: #175c8e; - color: white; - border-radius: 4px; - height: 50px; - width: 40%; - } - - &--error { - background-color: #f7941e; - color: white; - border-radius: 4px; - height: 50px; - width: 40%; - } -} - -.error { - color: #f7941e; - font-size: 11px; - display: flex; - align-items: center; - gap: 5px; -} - -.comment { - color: #cacaca; - font-size: 11px; -}