Nuevo fondo y logo de La Salle en login

This commit is contained in:
2026-03-27 13:51:12 -06:00
parent 434b50cfc3
commit 36b9c559fa
5 changed files with 17 additions and 1 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 250 KiB

+5
View File
@@ -9,6 +9,11 @@ export function LoginCard() {
return ( return (
<div className="w-full max-w-md rounded-2xl bg-white p-8 shadow-xl"> <div className="w-full max-w-md rounded-2xl bg-white p-8 shadow-xl">
<img
src="/4_IMAGOTIPO_LASALLE_MEXICO_COLOR_RGB_2020.png"
alt="La Salle México"
className="mb-6 h-20 w-auto"
/>
<h1 className="mb-1 text-center text-2xl font-semibold"> <h1 className="mb-1 text-center text-2xl font-semibold">
Iniciar sesión Iniciar sesión
</h1> </h1>
+1 -1
View File
@@ -8,7 +8,7 @@ export const Route = createFileRoute('/login')({
function LoginPage() { function LoginPage() {
return ( return (
<div className="flex min-h-screen items-center justify-center bg-gradient-to-br from-[#7b0f1d] via-[#6b0d1a] to-[#3a050a]"> <div className="login-bg flex min-h-screen items-center justify-center bg-cover bg-center bg-no-repeat">
<LoginCard /> <LoginCard />
</div> </div>
) )
+11
View File
@@ -335,3 +335,14 @@ body {
@apply bg-background text-foreground; @apply bg-background text-foreground;
} }
} }
/* =====================================================================
Utilidades locales (sin romper el design system)
Intención:
- Evitar estilos inline en JSX para assets puntuales del proyecto
===================================================================== */
.login-bg {
background-image: url('/fondo_login.png');
}