From 15714037df510e95ec8054821a2c36dbbfd519b9 Mon Sep 17 00:00:00 2001 From: bangae1 Date: Tue, 3 Jun 2025 00:12:14 +0900 Subject: [PATCH] =?UTF-8?q?=EB=AA=A8=EB=B0=94=EC=9D=BC=20=ED=98=B8?= =?UTF-8?q?=ED=99=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/base/VModal.vue | 17 +++++++ src/components/layouts/navbar/Navbar.vue | 23 +++++++++- .../pages/contract/ContractList.vue | 10 ++++- .../pages/estimate/EstimateList.vue | 2 +- .../layout/toolbar/ToolbarUserProfile.vue | 44 ++++++++++++++++++- src/layouts/navbar.vue | 2 +- src/layouts/sidebar.vue | 2 +- src/pages/auth/login.vue | 2 +- src/pages/auth/signup.vue | 16 +++++++ src/pages/navbar/layouts/contract-list.vue | 4 +- src/pages/navbar/layouts/est-list.vue | 4 +- src/pages/sidebar/index.vue | 2 +- src/plugins/session-check.ts | 2 +- src/scss/components/_custom-contract.scss | 7 +++ 14 files changed, 123 insertions(+), 14 deletions(-) diff --git a/src/components/base/VModal.vue b/src/components/base/VModal.vue index 90c3c94..2e2d61c 100644 --- a/src/components/base/VModal.vue +++ b/src/components/base/VModal.vue @@ -170,6 +170,23 @@ onUnmounted(() => { } &.is-full { + @media (hover: none) and (pointer: coarse) { + .modal-content { + width: 100%; + max-width: 100% !important; + + .modal-card { + width: 100%; + .modal-card-body { + padding: 0px !important; + } + } + } + + .form-layout { + max-width: 100% !important; + } + } .modal-content { width: 100%; max-width: 90%; diff --git a/src/components/layouts/navbar/Navbar.vue b/src/components/layouts/navbar/Navbar.vue index 6e2fbe1..e92714f 100644 --- a/src/components/layouts/navbar/Navbar.vue +++ b/src/components/layouts/navbar/Navbar.vue @@ -33,6 +33,26 @@ const isScrolling = computed(() => { +