fix login

This commit is contained in:
Cayo Puigdefabregas 2022-05-04 12:53:22 +02:00
parent 8a6b0cde37
commit f2a85af1c2
2 changed files with 12 additions and 4 deletions

View File

@ -183,7 +183,7 @@ h1, h2, h3, h4, h5, h6 {
color: #fff;
}
.btn-primary:hover {
.btn-primary:hover, .btn-primary:focus {
background-color: #cc0066;
border-color: #cc0066;
color: #fff;
@ -1028,7 +1028,7 @@ h1, h2, h3, h4, h5, h6 {
padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
background: #4154f1;
background: #993365;
border: 0;
padding: 10px 30px;
color: #fff;
@ -1036,7 +1036,15 @@ h1, h2, h3, h4, h5, h6 {
border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
background: #5969f3;
background: #993365;
}
button[type=submit] {
background-color: #993365;
border-color: #993365;
}
button[type=submit]:hover {
background-color: #993365;
border-color: #993365;
}
@-webkit-keyframes animate-loading {
0% {

View File

@ -13,7 +13,7 @@
<div class="d-flex justify-content-center py-4">
<a href="{{ url_for('core.login') }}" class="logo d-flex align-items-center w-auto">
<img src="{{ url_for('static', filename='img/usody-logo-black.svg') }}" alt="">
<img src="{{ url_for('static', filename='img/logo_usody_clock.png') }}" alt="">
</a>
</div><!-- End Logo -->