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:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user