chore(calendar): adjust naming for calendar component consistency

This commit is contained in:
Jonas Francisco 2025-09-11 01:49:36 -03:00
parent ae637c480a
commit debc92dd45
2 changed files with 15 additions and 7 deletions

View File

@ -347,9 +347,9 @@ const ProfissionalPage = () => {
}} }}
buttonText={{ buttonText={{
today: 'Hoje', today: 'Hoje',
month: 'Mês', month: 'Dia',
week: 'Semana', week: 'Semana',
day: 'Dia' day: 'Mês'
}} }}
/> />
</div> </div>

View File

@ -1,9 +1,9 @@
@import 'tailwindcss'; @import 'tailwindcss';
@import 'tw-animate-css'; @import 'tw-animate-css';
/* Removed invalid @custom-variant at-rule */
@custom-variant dark (&:is(.dark *));
:root { :root {
--background: var(--primary)
--background: oklch(1 0 0); --background: oklch(1 0 0);
--foreground: oklch(0.145 0 0); --foreground: oklch(0.145 0 0);
--card: oklch(1 0 0); --card: oklch(1 0 0);
@ -74,7 +74,7 @@
--sidebar-ring: oklch(0.439 0 0); --sidebar-ring: oklch(0.439 0 0);
} }
@theme inline { :root {
--font-sans: var(--font-geist-sans); --font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono); --font-mono: var(--font-geist-mono);
--color-background: var(--background); --color-background: var(--background);
@ -117,9 +117,17 @@
@layer base { @layer base {
* { * {
@apply border-border outline-ring/50; border-color: var(--border);
outline-color: var(--ring);
outline-width: 2px;
outline-style: solid;
outline-offset: 0.5px;
} }
body { body {
@apply bg-background text-foreground; background-color: var(--background);
color: var(--foreground);
} }
} }
.buttonText {
background-color: var(--primary);
}