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
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;
+ }
}
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 @@