Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/Strong-Potato/TripVote-FE in…
Browse files Browse the repository at this point in the history
…to 184-refactor-home-page-detail
  • Loading branch information
Yamyam-code committed Jan 26, 2024
2 parents 1650f24 + a3b1d60 commit 771c30a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

.container {
position: sticky;
top: 25.5rem;
top: 20.5rem;

nav {
height: 7rem;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

.mapContainer {
position: sticky;
top: 9.6rem;
top: 4.5rem;
width: 100%;
min-width: 36rem;
max-width: 45rem;
Expand Down
4 changes: 2 additions & 2 deletions src/components/VoteTabPanel/VoteTabPanel.module.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@use "@/sass" as *;
@use '@/sass' as *;

.cotainer {
width: 100%;
Expand All @@ -14,7 +14,7 @@
background-color: $neutral0;

position: sticky;
top: 97px;
top: 46px;
z-index: 3;

&__counts {
Expand Down
11 changes: 6 additions & 5 deletions src/pages/Trip/Trip.module.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@use '@/sass' as *;

.container {
margin-top: 56px;
padding-top: 56px;
width: 100%;
min-width: 36rem;
max-width: 45rem;
Expand Down Expand Up @@ -137,7 +137,7 @@

.contents {
width: 100%;
height: calc(100vh - 50px);
height: calc(100vh - 112px);

background-color: $neutral0;
border-radius: 16px 16px 0px 0px;
Expand All @@ -148,7 +148,7 @@
//indicator와 tabList를 하나로 묶은 div입니다
&__stickyTabList {
position: sticky;
top: 50px;
top: 0px;
z-index: 5;
border-radius: 16px 16px 0px 0px;
background-color: $neutral0;
Expand All @@ -167,8 +167,9 @@
}

&__tabContent {
height: 100%;
min-height: calc(100vh - 5rem);
height: calc(100% - 56px);
min-height: calc(100vh - 10rem);
margin-top: 0;
// overflow-y: auto;
// max-height: calc(100vh - 34rem);
}
Expand Down

0 comments on commit 771c30a

Please sign in to comment.