From 1050d64e803814ca2eeb2217d660887dd55f52e3 Mon Sep 17 00:00:00 2001 From: nevermoregb Date: Mon, 24 Mar 2025 09:47:33 +0900 Subject: [PATCH 1/2] =?UTF-8?q?minlength=20=EC=9B=90=EB=B3=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/input/UserFormInput.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/input/UserFormInput.vue b/src/components/input/UserFormInput.vue index 37e076f..612ef40 100644 --- a/src/components/input/UserFormInput.vue +++ b/src/components/input/UserFormInput.vue @@ -14,6 +14,7 @@ :value="computedValue" :disabled="disabled" :maxLength="maxlength" + :minLength="minlength" :placeholder="title" @blur="$emit('blur')" /> @@ -29,6 +30,7 @@ :value="computedValue" :disabled="disabled" :maxLength="maxlength" + :minLength="minlength" :placeholder="title" @blur="$emit('blur')" /> From 676636b246cc93cef5c4cb27e9b63d8d1e8dcf67 Mon Sep 17 00:00:00 2001 From: yoon Date: Mon, 24 Mar 2025 10:25:49 +0900 Subject: [PATCH 2/2] =?UTF-8?q?back=20btn=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/css/custom.css | 12 +++++++++--- src/components/button/ScrollTopButton.vue | 14 ++++++++++++++ 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/public/css/custom.css b/public/css/custom.css index f86b056..bd9559d 100644 --- a/public/css/custom.css +++ b/public/css/custom.css @@ -591,25 +591,31 @@ /* Scroll Button */ .scroll-top-btn { - bottom: 20px; + bottom: 40px; right: 21.7%; transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease; } - .scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); } - .scroll-top-btn.hidden { opacity: 0; visibility: hidden; transform: translateY(10px); } +.back-btn { + bottom: 40px; + right: 21.7%; + transition: transform 0.4s ease; +} +.back-btn.shifted { + transform: translateY(-50px); +} /* Scroll Button end */ diff --git a/src/components/button/ScrollTopButton.vue b/src/components/button/ScrollTopButton.vue index 10efb93..f870df6 100644 --- a/src/components/button/ScrollTopButton.vue +++ b/src/components/button/ScrollTopButton.vue @@ -1,4 +1,13 @@