Refactor: Adaptar componentes base al sistema de temas
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 49s
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 49s
Cambios: - app.vue: Reemplazar #fef9f0 con var(--brand-text) - layouts/dashboard.vue: Usar var(--brand-text) - layouts/informe.vue: Usar var(--brand-text) Todos los componentes base ahora responden al sistema de temas.
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<UApp>
|
<UApp>
|
||||||
<div class="brand-shell text-[#fef9f0]">
|
<div class="brand-shell text-[var(--brand-text)]">
|
||||||
<NuxtRouteAnnouncer />
|
<NuxtRouteAnnouncer />
|
||||||
<NuxtLayout>
|
<NuxtLayout>
|
||||||
<NuxtPage />
|
<NuxtPage />
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="brand-shell min-h-screen text-[#fef9f0]">
|
<div class="brand-shell min-h-screen text-[var(--brand-text)]">
|
||||||
<UDashboardGroup storage-key="analytics-dashboard" class="h-full">
|
<UDashboardGroup storage-key="analytics-dashboard" class="h-full">
|
||||||
<AppSidebar />
|
<AppSidebar />
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="brand-shell min-h-screen text-[#fef9f0]">
|
<div class="brand-shell min-h-screen text-[var(--brand-text)]">
|
||||||
<UDashboardGroup storage-key="analytics-dashboard" class="h-full">
|
<UDashboardGroup storage-key="analytics-dashboard" class="h-full">
|
||||||
<AppSidebar />
|
<AppSidebar />
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user