From abfc872d043bad23bb97f6137191e2b66318989d Mon Sep 17 00:00:00 2001 From: nevermoregb Date: Fri, 7 Mar 2025 12:14:54 +0900 Subject: [PATCH 1/3] =?UTF-8?q?=ED=83=91=EB=B0=94=20css=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/layouts/NormalLayout.vue | 42 +++++++++++++++++++++++++++--------- 1 file changed, 32 insertions(+), 10 deletions(-) diff --git a/src/layouts/NormalLayout.vue b/src/layouts/NormalLayout.vue index dd006b5..f07eb7e 100644 --- a/src/layouts/NormalLayout.vue +++ b/src/layouts/NormalLayout.vue @@ -56,18 +56,40 @@ margin-right: 20%; /* 채팅 사이드바의 너비만큼 밀리도록 설정 */ } - /* top bar 고정1 */ - .layout-navbar-fixed .layout-navbar { - position: relative; - top: 0; - right: auto; + /* 탑바 범위조정 */ + nav#layout-navbar { left: 0 !important; - width: 96% !important; - padding-top: 0 !important; + margin-right: 20%; + margin-left: 260px; + width: auto !important; + min-width: auto !important; + right: 24px !important; + left: 24px !important; } - /* top bar 고정2 */ - .layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page { - padding-top: 0 !important; + /* 탑바 범위조정(1200px 이하) */ + @media (max-width: 1200px) { + nav#layout-navbar { + left: 0 !important; + margin-right: 20%; + margin-left: 0px; + width: auto !important; + min-width: auto !important; + right: 24px !important; + left: 24px !important; + } + } + + /* 탑바 범위조정(992px 이하) */ + @media (max-width: 992px) { + nav#layout-navbar { + left: 0 !important; + margin-right: 20%; + margin-left: 0px; + width: auto !important; + min-width: auto !important; + right: 24px !important; + left: 24px !important; + } } From fc2f7bd4cb98b2134cf42ca3111c8335336ae238 Mon Sep 17 00:00:00 2001 From: dyhj625 Date: Fri, 7 Mar 2025 12:18:40 +0900 Subject: [PATCH 2/3] =?UTF-8?q?=EC=BB=A4=EC=8A=A4=ED=85=80=20css=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/css/custom.css | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/public/css/custom.css b/public/css/custom.css index be038c6..b62da32 100644 --- a/public/css/custom.css +++ b/public/css/custom.css @@ -210,9 +210,10 @@ opacity: 0.6; /* 흐려 보이게 */ .profile-list { display: flex; flex-wrap: wrap; - justify-content: center; + justify-content: flex-start; gap: 10px; padding: 0; + margin-left: 20px; } .profile-img { transition: all 0.2s ease-in-out; @@ -399,9 +400,6 @@ opacity: 0.6; /* 흐려 보이게 */ right: 1rem; z-index: 2; background-color: #fff !important; - border-radius: 0.5rem; - opacity: 1; - padding: 0.635rem; box-shadow: 0 0.125rem 0.25rem rgba(161, 172, 184, 0.4); transition: all 0.23s ease 0.1s; transform: translate(23px, -25px); @@ -413,4 +411,7 @@ opacity: 0.6; /* 흐려 보이게 */ transform: translate(20px, -20px); } +.end-project { + background-color: #ddd !important; +} /* project list end */ \ No newline at end of file From 2d29bc56ec6bbbace3bd6138c2c8a155915004ca Mon Sep 17 00:00:00 2001 From: dyhj625 Date: Fri, 7 Mar 2025 12:40:43 +0900 Subject: [PATCH 3/3] =?UTF-8?q?=EB=A1=9C=EB=94=A9=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=80(=EA=B2=8C=EC=8B=9C=ED=8C=90=20=EC=83=81=EC=84=B8,?= =?UTF-8?q?=ED=88=AC=ED=91=9C=EB=A6=AC=EC=8A=A4=ED=8A=B8)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/LoadingPage.vue | 44 +++++++++++++++++++++++++++ src/views/board/BoardView.vue | 11 +++++-- src/views/voteboard/voteBoardList.vue | 7 ++++- 3 files changed, 58 insertions(+), 4 deletions(-) create mode 100644 src/views/LoadingPage.vue diff --git a/src/views/LoadingPage.vue b/src/views/LoadingPage.vue new file mode 100644 index 0000000..fccf619 --- /dev/null +++ b/src/views/LoadingPage.vue @@ -0,0 +1,44 @@ + + + + + diff --git a/src/views/board/BoardView.vue b/src/views/board/BoardView.vue index d32b3e6..7187471 100644 --- a/src/views/board/BoardView.vue +++ b/src/views/board/BoardView.vue @@ -1,6 +1,7 @@