Skip to content

Commit

Permalink
Decrease knödel icon size
Browse files Browse the repository at this point in the history
Addresses RISDEV-212
  • Loading branch information
zechmeister committed Jan 3, 2024
1 parent 47c5393 commit 8be79b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/shared/components/input/NestedInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function toggleContentVisibility(): void {
</InputFieldComponent>

<!-- Toggle Button -->
<div class="absolute -right-10 top-38 z-10">
<div class="absolute right-[-9px] top-[39px] z-10">
<button
:aria-label="`${ariaLabel} ${
localIsExpanded ? 'schließen' : 'anzeigen'
Expand All @@ -83,10 +83,10 @@ function toggleContentVisibility(): void {
@click="toggleContentVisibility"
>
<slot v-if="localIsExpanded" name="close-icon">
<IconHorizontalRule />
<IconHorizontalRule class="h-20 w-20" />
</slot>
<slot v-else name="open-icon">
<IconAdd />
<IconAdd class="h-20 w-20" />
</slot>
</button>
</div>
Expand Down

0 comments on commit 8be79b7

Please sign in to comment.