Skip to content

Commit

Permalink
๐Ÿ› ๏ธ BottomSheetModal ๊ตฌ๋ถ„์„  ์˜ค๋ฅ˜ ์ˆ˜์ • (#53)
Browse files Browse the repository at this point in the history
* feat: ํ”ผ๋“œ๊ฐ„ ๊ตฌ๋ถ„์„  0.5 ํ”ฝ์…€ ์ˆ˜์ •
* feat: ๋ฒ„ํŠผ ํฌ๊ธฐ 46px ์ˆ˜์ •
* feat: ModalOverlay z-index ๊ฐ’ ์ˆ˜์ •
* feat: ๋ฒ„ํŠผ ์ƒ‰์ƒ ์ œ๊ฑฐ
* feat: ๊ตฌ๋ถ„์„  ๊ฐ’ ์ˆ˜์ •

Closes #19
  • Loading branch information
BangDori authored May 13, 2024
1 parent 86deaf8 commit 4b8560e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
3 changes: 1 addition & 2 deletions src/shared/ui/button/BasicButton.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@

.bsm-option {
width: 280px;
height: 40px;
background-color: $gray1;
height: 46px;
color: $gray5;
text-align: center;
border-radius: 4px;
Expand Down
6 changes: 3 additions & 3 deletions src/shared/ui/modal/BottomSheetModal.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
border-radius: 4px;
}
.option-divider {
width: 240px;
width: 244px;
margin: 0 auto;
border: none;
height: 1px;
background-color: $gray3;
height: 0.5px;
background-color: $gray2;
}
}
2 changes: 1 addition & 1 deletion src/shared/ui/modal/ModalOverlay.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@mixin overlay($isModal: false) {
position: absolute;
z-index: 10;
z-index: 100;

@if $isModal {
top: 50%;
Expand Down
2 changes: 1 addition & 1 deletion src/widgets/feed-main-list/ui/FeedMainList.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
.feed-wrapper:not(:last-child)::after {
content: '';
display: block;
height: 1px;
height: 0.5px;
background-color: $gray2;
margin: 15px 0 14px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/widgets/feed-main-list/ui/SkeletonFeedMainList.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
.skeleton-feed-wrapper:not(:last-child)::after {
content: '';
display: block;
height: 1px;
height: 0.5px;
background-color: $gray2;
margin: 15px 0 14px;
}
Expand Down

0 comments on commit 4b8560e

Please sign in to comment.