Skip to content

Commit 6b0bae2

Browse files
committed
fix double scrollbars
1 parent 82b0155 commit 6b0bae2

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

frontend/app/page.tsx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,16 @@ export default function App() {
1818
return userAuth ? (
1919
<div className={`${navStyles.containerFluid} container-fluid`}>
2020
<div className="row">
21-
<ScreenSizeProvider>
22-
<div className={`col-md-4 col-lg-3 ${tagStyles.tagList}`}>
23-
<TagList></TagList>
24-
</div>
21+
<ScreenSizeProvider>
22+
<div className={`col-md-4 col-lg-3 ${tagStyles.tagList}`}>
23+
<TagList />
24+
</div>
2525
</ScreenSizeProvider>
2626
<div className="col-md-8 col-lg-9">
2727
<BookmarkCardsView />
2828
</div>
2929
</div>
3030
</div>
31-
3231
) : (
3332
<div></div>
3433
);

frontend/styles/tag.module.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
.tagList {
2-
min-height: calc(100vh - 70px);
32
margin-top: 5px;
43
padding-bottom: 5px;
54
border-radius: 10px;

0 commit comments

Comments
 (0)