Skip to content

Commit fe9e2af

Browse files
committed
fix: correct grid template columns in feed component for consistent layout
1 parent 1965430 commit fe9e2af

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

src/features/feed/components/feed.css

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
}
44
.feed {
55
display: grid;
6-
grid-template-columns: repeat(3, 1fr);
6+
grid-template-columns: repeat(3, 33%);
77
scroll-margin-top: 12px;
88
gap: 16px;
99
margin-left: 1%;
@@ -36,12 +36,6 @@
3636
width: 100%;
3737
box-sizing: border-box;
3838
}
39-
#banneradv .wrap {
40-
display: flex;
41-
flex-direction: column;
42-
align-items: center;
43-
justify-content: center;
44-
}
4539
}
4640

4741
.feed .placeholder {

0 commit comments

Comments
 (0)