Skip to content

Commit e52f5f7

Browse files
committed
feat(feed-item): remove accent on github-action entries
1 parent 6fa9de5 commit e52f5f7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/components/feed-item.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<li class="feed-item">
33
<time class="feed-item__timestamp">{{ data.date }}</time>
44
<component :is="icon.component" :style="{ stroke: icon.color }" class="feed-item__icon" />
5-
<span v-if="data.username.includes('github-actions')" class="feed-item__accent">
5+
<span v-if="data.username.includes('github-actions')">
66
{{ data.username }}
77
</span>
88
<a
@@ -92,7 +92,7 @@ const icon = props.data.type ? EVENT_VIEW_MAP[props.data.type][props.data.action
9292
margin-inline: 0.25rem;
9393
vertical-align: bottom;
9494
}
95-
a, &__accent {
95+
a {
9696
font-weight: bold;
9797
}
9898
}

src/pages/feed.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ const { events, amount } = useEventsStore();
1919
ul {
2020
display: grid;
2121
gap: 0.5rem;
22+
justify-items: start;
2223
padding-left: 1.25rem;
2324
list-style-type: circle;
2425
@media (width <= 600px) {

0 commit comments

Comments
 (0)