2
0

2 کامیت‌ها 1e5c781043 ... 056356c5e5

نویسنده SHA1 پیام تاریخ
  Bruno 056356c5e5 button visual changes 10 ماه پیش
  Bruno 94bc7fb300 rm scroll bar batter dsigner 10 ماه پیش
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  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>