refactor: simplify button styles across Svelte components

- Removed unnecessary 'btn-square' class from buttons in multiple components to streamline styling.
- Updated button elements in SolicitarFerias, editar, cadastro, and times pages for consistency and improved readability.
- Replaced SVG icons with Lucide icons for better visual consistency in the cadastro page.
- Cleaned up imports in the cadastro page to enhance code clarity.
This commit is contained in:
2025-11-10 17:01:38 -03:00
parent c7479222da
commit 2772aa3112
4 changed files with 10 additions and 26 deletions

View File

@@ -454,7 +454,7 @@
<h2 class="card-title text-lg">{time.nome}</h2>
</div>
<div class="dropdown dropdown-end">
<button type="button" class="btn btn-sm btn-square" aria-label="Menu do time">
<button type="button" class="btn btn-sm" aria-label="Menu do time">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-5 w-5"
@@ -664,7 +664,7 @@
</div>
</div>
<button
class="btn btn-sm btn-error btn-square"
class="btn btn-sm btn-error"
onclick={() => removerMembro(membro._id)}
disabled={processando}
aria-label="Remover membro"