Skip to content

Commit

Permalink
Merge pull request #170 from MeeTeamNumdle/release-1.0
Browse files Browse the repository at this point in the history
fix: 포트폴리오 관리 페이지 버그 수정 - 배포 사이트 적용
  • Loading branch information
prgmr99 authored May 7, 2024
2 parents 154e761 + fc93b51 commit df8f7d0
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions src/pages/portfolio/management/PortfolioManagementPage.styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,35 +27,37 @@ const PortfolioManagementHeader = styled.header`
`;

const PortfolioManagementGrid = styled.div`
display: grid;
display: grid;
// margin: 8rem 0;
margin-top: 8rem;
margin-top: 8rem;
grid-template-columns: repeat(auto-fill, minmax(22.5rem, 1fr));
grid-auto-rows: minmax(12.7rem, auto);
row-gap: 4rem;
column-gap: 2rem;
@media (min-width: 144rem) {
grid-template-columns: repeat(4, minmax(22.5rem, 1fr));
}
grid-template-columns: repeat(4, minmax(22.5rem, 1fr));
}
/* 스크롤바 숨기기 */
overflow-y: auto;
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
&::-webkit-scrollbar {
display: none; /* Chrome, Safari, Opera*/
}
`;

const PortfolioManagementColumn = styled.div`
position: fixed;
/* position: fixed; */
display: flex;
align-items: center;
justify-content: center;
left: 0;
top: 0;
/* left: 0; */
/* top: 0; */
width: 100%;
height: 100%;
margin-top: 20rem;
color: var(--State-unactive, #8e8e8e);
Expand Down

0 comments on commit df8f7d0

Please sign in to comment.