diff --git a/public/assets/images/layout/modal_close.svg b/public/assets/images/layout/modal_close.svg
new file mode 100644
index 0000000..e8a1829
--- /dev/null
+++ b/public/assets/images/layout/modal_close.svg
@@ -0,0 +1,3 @@
+
diff --git a/public/assets/images/layout/modal_header_icon.svg b/public/assets/images/layout/modal_header_icon.svg
new file mode 100644
index 0000000..604629e
--- /dev/null
+++ b/public/assets/images/layout/modal_header_icon.svg
@@ -0,0 +1,4 @@
+
diff --git a/src/app/main/page.tsx b/src/app/main/page.tsx
index 17fad20..1394195 100644
--- a/src/app/main/page.tsx
+++ b/src/app/main/page.tsx
@@ -13,7 +13,7 @@ export default function MainPage(){
-
+
>
)
}
\ No newline at end of file
diff --git a/src/components/main/MemberInformationPop.tsx b/src/components/main/MemberInformationPop.tsx
index fbedf2e..7e7da41 100644
--- a/src/components/main/MemberInformationPop.tsx
+++ b/src/components/main/MemberInformationPop.tsx
@@ -4,13 +4,44 @@ export default function MemberInformationPop(){
- sdasd
+
+
+
+

+
+
会員情報
+
+
+
- asdasdasd
-
-
diff --git a/src/styles/components/_index.scss b/src/styles/components/_index.scss
index e5fc943..b531da7 100644
--- a/src/styles/components/_index.scss
+++ b/src/styles/components/_index.scss
@@ -1,2 +1,3 @@
@forward 'main';
-@forward 'login';
\ No newline at end of file
+@forward 'login';
+@forward 'pop-contents';
\ No newline at end of file
diff --git a/src/styles/components/_pop-contents.scss b/src/styles/components/_pop-contents.scss
new file mode 100644
index 0000000..2a108ae
--- /dev/null
+++ b/src/styles/components/_pop-contents.scss
@@ -0,0 +1,16 @@
+@use "../abstracts" as *;
+
+// 회원정보 팝업
+.member-infor-form-wrap{
+ margin-bottom: 20px;
+ .member-infor-bx{
+ margin-bottom: 18px;
+ &:last-child{
+ margin-bottom: 0;
+ }
+ .member-infor-tit{
+ @include defaultFont($font-s-13, $font-w-500, $font-c);
+ margin-bottom: 12px;
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/styles/layout/_layout.scss b/src/styles/layout/_layout.scss
index b08d147..ae46baa 100644
--- a/src/styles/layout/_layout.scss
+++ b/src/styles/layout/_layout.scss
@@ -116,6 +116,7 @@ header{
.profile-name{
font-family: 'Pretendard', sans-serif;
@include defaultFont($font-s-15, $font-w-600, $black-1010);
+ cursor: pointer;
}
.profile-company{
font-family: 'Pretendard', sans-serif;
diff --git a/src/styles/layout/_pop-common.scss b/src/styles/layout/_pop-common.scss
index 8898dcd..5efcb2d 100644
--- a/src/styles/layout/_pop-common.scss
+++ b/src/styles/layout/_pop-common.scss
@@ -14,10 +14,10 @@
position: relative;
display: flex;
align-items: center;
- min-height: calc(100% - (24px * 2));
+ min-height: calc(100% - (14px * 2));
max-width: 860px;
z-index:111000;
- margin: 24px auto;
+ margin: 14px auto;
pointer-events: none;
font-size: $font-s-14;
.modal-content{
@@ -32,13 +32,13 @@
.modal-header {
display: block;
position:relative;
- padding:10px
+ padding:20px 20px 0;
}
.modal-body {
position: relative;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
- padding: 10px;
+ padding: 32px 20px 20px;
}
.modal-footer {
display: -ms-flexbox;
@@ -51,4 +51,34 @@
}
}
}
+}
+
+// modal-header
+.modal-header-inner{
+ @include flex(0px);
+ align-items: center;
+ .modal-name-wrap{
+ @include flex(12px);
+ align-items: center;
+ .modal-img{
+ @include flex(0px);
+ align-items: center;
+ justify-content: center;
+ width: 38px;
+ height: 38px;
+ border-radius: 50%;
+ background-color: $black-1010;
+ }
+ .modal-name{
+ @include defaultFont($font-s-15, $font-w-600, $black-1010)
+ }
+ }
+ .modal-close{
+ display: block;
+ margin-left: auto;
+ width: 24px;
+ height: 24px;
+ background: url(/assets/images/layout/modal_close.svg)no-repeat center;
+ background-size: cover;
+ }
}
\ No newline at end of file