Skip to content

Commit

Permalink
fix(NcListItem): align indicators at the element bottom
Browse files Browse the repository at this point in the history
- fix issues, when details are not provided

Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
  • Loading branch information
Antreesy committed Mar 15, 2024
1 parent 410e066 commit 5701cd6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/NcListItem/NcListItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@
:name="'This is an active element with outlined counter'"
:bold="false"
:active="true"
:details="'1h'"
:counter-number="44"
counterType="outlined">
<template #icon>
Expand Down Expand Up @@ -147,7 +146,6 @@
:name="'Name of the element with outlined counter'"
:bold="false"
:force-display-actions="true"
:details="'1h'"
:counter-number="44"
counterType="outlined">
<template #icon>
Expand Down Expand Up @@ -832,6 +830,7 @@ export default {
.list-item-content__details {
display: flex;
flex-direction: column;
justify-content: end;
align-items: end;
}
&--one-line {
Expand Down

0 comments on commit 5701cd6

Please sign in to comment.