Skip to content

Commit

Permalink
wip: Refactor collections based components #917
Browse files Browse the repository at this point in the history
  • Loading branch information
cnouguier committed Dec 17, 2024
1 parent 93b2372 commit 268263f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions core/client/components/collection/KTimeLine.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
<KPanel
v-if="getDecoration(item)"
:content="getDecoration(item)"
class="q-gutter-x-xs"
/>
</div>
<div v-else class="column items-end">
Expand All @@ -72,7 +73,8 @@
<KPanel
v-if="getDecoration(item)"
:content="getDecoration(item)"
class="justify-end"
direction="horizontal"
class="justify-end q-gutter-x-xs"
/>
</div>
</slot>
Expand Down Expand Up @@ -376,22 +378,25 @@ onBeforeUnmount(() => {
padding-bottom: 8px;
}
.k-timeline-heading {
font-size: 1.25rem;
font-size: 1.2rem;
font-weight: bold;
}
.q-timeline__title {
margin-bottom: 4px;
}
.q-timeline__subtitle {
margin-bottom: 0px;
opacity: 0.9;
opacity: 1.0; // override default opacity
text-transform: capitalize;
font-weight: 500;
}
.q-timeline__content {
padding-bottom: 16px;
width: 100%;
}
.q-timeline__entry {
line-height: 16px;
}
.q-timeline--comfortable .q-timeline__subtitle {
width: v-bind(comfortSize);
}
Expand Down

0 comments on commit 268263f

Please sign in to comment.