We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82b0155 commit 6b0bae2Copy full SHA for 6b0bae2
2 files changed
frontend/app/page.tsx
@@ -18,17 +18,16 @@ export default function App() {
18
return userAuth ? (
19
<div className={`${navStyles.containerFluid} container-fluid`}>
20
<div className="row">
21
- <ScreenSizeProvider>
22
- <div className={`col-md-4 col-lg-3 ${tagStyles.tagList}`}>
23
- <TagList></TagList>
24
- </div>
+ <ScreenSizeProvider>
+ <div className={`col-md-4 col-lg-3 ${tagStyles.tagList}`}>
+ <TagList />
+ </div>
25
</ScreenSizeProvider>
26
<div className="col-md-8 col-lg-9">
27
<BookmarkCardsView />
28
</div>
29
30
31
-
32
) : (
33
<div></div>
34
);
frontend/styles/tag.module.scss
@@ -1,5 +1,4 @@
1
.tagList {
2
- min-height: calc(100vh - 70px);
3
margin-top: 5px;
4
padding-bottom: 5px;
5
border-radius: 10px;
0 commit comments