Remove temporary changes (problem lied on nginx config file, using main php instead of development) & fixing issue with password field presented as text field
All checks were successful
Website Sync / website-sync (push) Successful in 6s

This commit is contained in:
2026-02-04 22:58:34 -03:00
parent e8a41a83f4
commit de785a4f21
2 changed files with 3 additions and 383 deletions

View File

@@ -124,7 +124,7 @@ button:hover, .button:hover {
transition: padding-bottom 0.15s;
transition: padding-top 0.15s;}
input[type=text] {
input[type=text], input[type=password] {
font-family: 'special elite';
border: 0;
border-radius: var(--input-border-radius);
@@ -132,9 +132,9 @@ input[type=text] {
transition: background-color 0.1s;
transition: border-bottom 0.1s;}
input[type=text]:focus { outline: 0; }
input[type=text]:focus, input[type=password]:focus { outline: 0; }
input[type=text]:hover {
input[type=text]:hover, input[type=password]:hover {
border-bottom: 2px solid var(--input-highlight);
background-color: var(--input-background-hover);
transition: background-color 0.1s;}