Skip to content

Commit 4a5348d

Browse files
committed
fix: remove arbitrary timeline's padding
1 parent 8bb59ed commit 4a5348d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/primitives/Timeline/Timeline.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<script>
22
export default {
33
name: 'Timeline',
4-
props: {
5-
stages: { type: Object, required: true }
6-
}
4+
props: {
5+
stages: { type: Object, required: true },
6+
},
77
}
88
</script>
99

1010
<template>
11-
<ol class="px-5 timeline">
11+
<ol class="timeline">
1212
<li
1313
v-for="(stage, index) in stages"
1414
:key="index"

0 commit comments

Comments
 (0)