style(common): 🎨 Update Common.css

This commit is contained in:
Jorge Mario Arita Ramírez 2024-04-01 17:07:05 -06:00
parent c0fa2200bb
commit 753d3327fa
2 changed files with 5 additions and 2 deletions

View File

@ -209,7 +209,8 @@ const ResponsiveContainer = ({ children }) => {
} }
{/* Content area */} {/* Content area */}
<div className={`${sidebarOpen ? 'relative' : 'absolute'} flex h-screen w-full flex-1 flex-col overflow-y-auto overflow-x-hidden bg-gray-100 dark:bg-gray-700`}> <div className={'relative flex w-full flex-1 flex-col overflow-y-auto overflow-x-hidden'}>
{/* Site header */} {/* Site header */}
{userObj && userObj.nombre_usuario && {userObj && userObj.nombre_usuario &&
<Navbar <Navbar
@ -236,6 +237,8 @@ const ResponsiveContainer = ({ children }) => {
<SessionTimeout i18n={i18n} user={userObj} onTimeout={() => onTimeout()} onCancelTimeout={() => onCancelTimeout()} /> <SessionTimeout i18n={i18n} user={userObj} onTimeout={() => onTimeout()} onCancelTimeout={() => onCancelTimeout()} />
} }
</div> </div>
{/* Footer */}
<Footer version={appVersion} label={i18n.t('common.version') || 'version'} /> <Footer version={appVersion} label={i18n.t('common.version') || 'version'} />
</div> </div>
</LayoutContext.Provider> </LayoutContext.Provider>

View File

@ -82,7 +82,7 @@ select.via-input {
} }
.responsive-container { .responsive-container {
@apply w-full h-auto min-h-[calc(100vh-60px)] mx-auto bg-[#ECEFF8] dark:bg-[#0f0f0f] items-center pb-10 p-2 transition-colors duration-300 ease-in-out !important; @apply w-full h-full mx-auto bg-background items-center pb-10 overflow-auto p-2 transition-colors duration-350 ease-in-out text-[#0F0F0F] dark:text-[#F1F1F1] !important;
} }
.via-title { .via-title {