carousel, agenda arquivados, agenda cor, agenda arquivados, grupos pacientes, pacientes arquivados - desativados, sessoes verificadas, ajuste notificações, Prontuario, Agenda Animation, Menu Profile, bagdes Profile, Offline

This commit is contained in:
Leonardo
2026-03-18 09:26:09 -03:00
parent 66f67cd40f
commit d6d2fe29d1
55 changed files with 3655 additions and 1512 deletions

View File

@@ -1,3 +1,31 @@
/* You can add global styles to this file, and also import other style files */
/* ── Imports ─────────────────────────── */
@use 'primeicons/primeicons.css';
@use '@/assets/layout/layout.scss';
/* ── Design Tokens (Tailwind override) ─ */
:root {
--text-xs: 0.8rem;
}
/* ── Dark mode (opcional) ───────────── */
.app-dark {
--text-xs: 0.82rem;
}
/* ── Responsivo (opcional) ─────────── */
@media (min-width: 768px) {
:root {
--text-xs: 0.85rem;
}
}
/* Highlight pulse (acionado externamente via classe JS) */
@keyframes highlight-pulse {
0% { box-shadow: 0 0 0 0 rgba(99,102,241,0.7), 0 0 0 0 rgba(99,102,241,0.4); }
40% { box-shadow: 0 0 0 8px rgba(99,102,241,0.3), 0 0 0 16px rgba(99,102,241,0.1); }
100% { box-shadow: 0 0 0 0 rgba(99,102,241,0), 0 0 0 0 rgba(99,102,241,0); }
}
.notif-card--highlight {
animation: highlight-pulse 1s ease-out 3;
border-color: rgba(99,102,241,0.6) !important;
}