Skip to content

Commit

Permalink
fix: stylelint
Browse files Browse the repository at this point in the history
  • Loading branch information
kaiarrowood committed Dec 16, 2024
1 parent 34337ee commit 673c401
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ const { i18n: { t } } = composables.useI18n()
@media (min-width: $kui-breakpoint-mobile) {
/** 2 columns per row + gap */
width: calc(2 * #{$feature-card-width} + #{$kui-space-60});
width: calc(2 * #{$feature-card-width} + #{$kui-space-60}); /* stylelint-disable-line */
}
.entity-empty-state-card {
Expand Down Expand Up @@ -241,11 +241,11 @@ const { i18n: { t } } = composables.useI18n()
}
:deep(.card-content) {
-webkit-box-orient: vertical;
color: $kui-color-text-neutral;
display: -webkit-box;
-webkit-line-clamp: 3;
line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
}
Expand Down

0 comments on commit 673c401

Please sign in to comment.