Skip to content

Commit

Permalink
quick change to tile (#3545)
Browse files Browse the repository at this point in the history
  • Loading branch information
asylves1 authored May 6, 2024
1 parent 6401d26 commit b443e79
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<template>
<header>
<div class="title-row">
<h4><slot /> <i v-if="props.tooltip" v-tooltip="tooltip" class="pi pi-info-circle" /></h4>
<h4 class="title">
<slot /> <i v-if="props.tooltip" v-tooltip="tooltip" class="pi pi-info-circle" />
</h4>
<slot name="inputs" />
<a v-if="documentationUrl" :href="documentationUrl" rel="noopener noreferrer"
>Documentation</a
Expand Down Expand Up @@ -75,6 +77,12 @@ header > * {
color: var(--text-color-primary);
}
header .title {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
header .tabs-row {
justify-content: space-between;
align-items: end;
Expand Down

0 comments on commit b443e79

Please sign in to comment.