Skip to content

Commit 32234c1

Browse files
committed
feat(feed): hide list dots on small screen
1 parent 5489ae2 commit 32234c1

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/pages/feed.vue

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ function composeIconStyle(action: FeedEvent["action"]): CSSProperties | null {
9191
gap: 0.5rem;
9292
padding-left: 1.25rem;
9393
list-style-type: circle;
94+
@media (width <= 600px) {
95+
padding-left: 0;
96+
list-style-type: none;
97+
}
9498
li {
9599
a {
96100
font-weight: bold;

0 commit comments

Comments
 (0)