Skip to content

Commit

Permalink
--centerContent => -centeredContent
Browse files Browse the repository at this point in the history
  • Loading branch information
kvas-damian authored Jan 9, 2024
1 parent 2d1cbbe commit 126db6d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/js/components/Outline/OutlineItem/OutlineItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
'-backgroundNeutral': backgroundColor === OUTLINE_ITEM_BACKGROUND_COLORS.NEUTRAL,
}"
>
<div class="outlineItem__content" :class="{ '--centerContent': $slots.default }">
<div class="outlineItem__content" :class="{ '-centeredContent': $slots.default }">
<span
v-if="index !== null"
class="outlineItem__index"
Expand All @@ -35,7 +35,7 @@
</span>
</span>
</div>
<div class="outlineItem__rightContent" :class="{ '--centerContent': $slots.default }">
<div class="outlineItem__rightContent" :class="{ '-centeredContent': $slots.default }">
<template v-if="$slots.default">
<slot />
</template>
Expand Down Expand Up @@ -82,7 +82,7 @@
column-gap: $space-xxs;
display: flex;
&.--centerContent {
&.-centeredContent {
align-items: center;
}
}
Expand Down

0 comments on commit 126db6d

Please sign in to comment.