Fix new border-radius values

This commit is contained in:
Timothée Goguely 2024-09-10 18:07:43 +02:00
parent e5e8e5770c
commit 47ddcdcd93
3 changed files with 5 additions and 5 deletions

View file

@ -5,7 +5,7 @@
-->
<button
@click="toggleExpand()"
class="btn btn--white | rounded-lg"
class="btn btn--white | rounded-xl"
aria-controls="menu"
:aria-expanded="isExpanded"
>
@ -30,7 +30,7 @@
/>
</svg>
</button>
<div v-if="isExpanded" id="menu" class="flex | rounded-lg">
<div v-if="isExpanded" id="menu" class="flex | rounded-xl">
<header class="w-full | flex">
<p>Nom du service</p>
</header>
@ -217,7 +217,7 @@ button[aria-controls="menu"][aria-expanded="false"] {
min-height: 2.5rem; /* 40px */
padding: 0 var(--space-16);
gap: var(--space-12);
border-radius: var(--rounded-md);
border-radius: var(--rounded-lg);
}
#menu li {