Skip to content

Commit

Permalink
feat(orga): create EvolutionHeader component
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasBazin authored Nov 8, 2024
1 parent 3d01c99 commit df95a34
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
17 changes: 17 additions & 0 deletions orga/app/components/campaign/results/evolution-header.gjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { t } from 'ember-intl';

import TooltipWithIcon from '../../ui/tooltip-with-icon';

<template>
<span class="evolution-header">

{{t "pages.campaign-results.table.column.evolution"}}

<TooltipWithIcon
@iconName="help"
@content={{@tooltipContent}}
@ariaHiddenIcon={{true}}
class="tooltip-with-icon-small"
/>
</span>
</template>

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.evolution-header {
display: inline-flex;
gap: var(--pix-spacing-1x);
align-items: center;
}

0 comments on commit df95a34

Please sign in to comment.