From 028c5bda11e2f0915855c9a0ecd4f1530007dd6e Mon Sep 17 00:00:00 2001 From: khj0414 Date: Tue, 8 Apr 2025 13:52:44 +0900 Subject: [PATCH] =?UTF-8?q?=EC=88=98=EC=A0=95=20=EB=82=A0=EC=A7=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/voteboard/voteboardWrite.vue | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/views/voteboard/voteboardWrite.vue b/src/views/voteboard/voteboardWrite.vue index ac57d7d..eb7ed5b 100644 --- a/src/views/voteboard/voteboardWrite.vue +++ b/src/views/voteboard/voteboardWrite.vue @@ -244,4 +244,14 @@ const goList = () => { .item-input { max-width: 200px; } +.hidden-date-input { + display: block; /* 한 줄 차지 */ + margin-top: 19.5px; /* form-input과 붙게 조정 */ + border: none; + padding: 0; + height: 0; + opacity: 0; + pointer-events: none; /* 사용자 클릭 못하게 */ + position: absolute; /* 시각적으로 띄워두기 */ +}