refactor(login): unify title styling by replacing class with shared auth-title

This commit is contained in:
2026-07-02 15:50:26 -03:00
parent 3c98600193
commit 5365811a50
3 changed files with 9 additions and 9 deletions

View File

@@ -23,6 +23,14 @@
padding: 2rem 1.5rem; padding: 2rem 1.5rem;
} }
:host ::ng-deep .auth-title {
margin: 0;
color: #666666;
font-size: 17px;
font-weight: 700;
text-transform: uppercase;
}
@media (min-width: 768px) { @media (min-width: 768px) {
.auth-layout { .auth-layout {
padding: 3rem 0; padding: 3rem 0;

View File

@@ -1,5 +1,5 @@
<header class="login-page__header text-center"> <header class="login-page__header text-center">
<h1 id="login-title" class="login-page__title">Iniciar sesión</h1> <h1 id="login-title" class="auth-title">Iniciar sesión</h1>
</header> </header>
<form class="login-page__form d-grid gap-3" novalidate aria-labelledby="login-title"> <form class="login-page__form d-grid gap-3" novalidate aria-labelledby="login-title">

View File

@@ -6,14 +6,6 @@
margin-bottom: 1.5rem; margin-bottom: 1.5rem;
} }
.login-page__title {
margin: 0;
color: #666666;
font-size: 17px;
font-weight: 700;
text-transform: uppercase;
}
.login-page__form { .login-page__form {
width: 100%; width: 100%;
} }