Fix: css
This commit is contained in:
@@ -63,8 +63,8 @@ const Header = () => {
|
|||||||
|
|
||||||
<IfNotAuthenticated>
|
<IfNotAuthenticated>
|
||||||
{!location.pathname.includes("login") && (
|
{!location.pathname.includes("login") && (
|
||||||
<Link to="/login">
|
<Link to="/login" className="text-decoration-none">
|
||||||
<Button variant="primary" size="sm" className="rounded-0 px-3 py-1 d-flex align-items-center">
|
<Button variant="primary" size="sm" className="rounded-0 px-3 py-1 d-flex align-items-center login-register-btn">
|
||||||
<FontAwesomeIcon icon={faSignIn} className="me-2" />
|
<FontAwesomeIcon icon={faSignIn} className="me-2" />
|
||||||
<span className="d-none d-md-inline">Iniciar sesión</span>
|
<span className="d-none d-md-inline">Iniciar sesión</span>
|
||||||
</Button>
|
</Button>
|
||||||
@@ -72,8 +72,8 @@ const Header = () => {
|
|||||||
)}
|
)}
|
||||||
|
|
||||||
{!location.pathname.includes("register") && (
|
{!location.pathname.includes("register") && (
|
||||||
<Link to="/register">
|
<Link to="/register" className="text-decoration-none">
|
||||||
<Button variant="primary" size="sm" className="rounded-0 px-3 py-1 d-flex align-items-center">
|
<Button variant="primary" size="sm" className="rounded-0 px-3 py-1 d-flex align-items-center login-register-btn">
|
||||||
<FontAwesomeIcon icon={faUserPlus} className="me-2" />
|
<FontAwesomeIcon icon={faUserPlus} className="me-2" />
|
||||||
<span className="d-none d-md-inline">Registrarse</span>
|
<span className="d-none d-md-inline">Registrarse</span>
|
||||||
</Button>
|
</Button>
|
||||||
|
|||||||
@@ -114,6 +114,16 @@ footer {
|
|||||||
color: var(--muted);
|
color: var(--muted);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
button span {
|
||||||
|
text-decoration: none !important;
|
||||||
|
color: inherit !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-register-btn span {
|
||||||
|
text-decoration: none !important;
|
||||||
|
color: inherit !important;
|
||||||
|
}
|
||||||
|
|
||||||
.modal-body {
|
.modal-body {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user