2 Commits 1e5c781043 ... 056356c5e5

Tác giả SHA1 Thông báo Ngày
  Bruno 056356c5e5 button visual changes 10 tháng trước cách đây
  Bruno 94bc7fb300 rm scroll bar batter dsigner 10 tháng trước cách đây
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      src/lib/component/Kitchen.svelte

+ 2 - 2
src/lib/component/Kitchen.svelte

@@ -61,10 +61,10 @@
   $: pedidosConcluidos = pedidos.filter(p => p.status === 'concluido');
 </script>
 
-<main class="p-4 bg-gray-800 min-h-screen text-white relative">
+<main class="p-4 bg-gray-800 rounded-md text-white relative">
   <!-- Botão para abrir histórico -->
   <div class="absolute top-4 right-4">
-    <button class="text-sm underline" on:click={abrirHistorico}>
+    <button class="bg-yellow-600 rounded-md p-1 text-md text-black" on:click={abrirHistorico}>
       Ver histórico
     </button>
   </div>