Correção do Botão de esconderbarra lateral principal agora mostrando o botão quando se passa o mouse

This commit is contained in:
2026-06-30 17:57:29 -03:00
parent ff9614d84c
commit 96d01aa52a
3 changed files with 15 additions and 12 deletions

View File

@@ -91,7 +91,7 @@
<div class="grid grid-cols-1 lg:grid-cols-2 gap-4">
<div class="bg-[#1a1a1a] rounded-2xl border border-white/5 p-6">
<p class="text-gray-400 text-sm font-medium mb-4">Notas fiscais por Motorista</p>
<div class="max-h-80 overflow-y-auto">
<div class="max-h-80 overflow-y-auto pr-2">
<%= render 'tabela_simples',
cabecalhos: ['Motorista', 'Notas fiscais'],
linhas: metricas.por_motorista.map { |h| [h[:nome], h[:total]] },
@@ -103,7 +103,7 @@
<div class="bg-[#1a1a1a] rounded-2xl border border-white/5 p-6">
<p class="text-gray-400 text-sm font-medium mb-4">Entregas por STS (Unidade)</p>
<div class="max-h-80 overflow-y-auto">
<div class="max-h-80 overflow-y-auto pr-2">
<%= render 'tabela_simples',
cabecalhos: ['Unidade', 'NFs entregues'],
linhas: metricas.por_sts.map { |h| [h[:nome], h[:total]] },