fix(css): kebab-case keyframe name and empty line before rule
All checks were successful
All checks were successful
fix(php): duplicate id 'form-result' → 'form-errors' for error container
This commit is contained in:
@@ -1216,7 +1216,7 @@ footer {
|
|||||||
gap: 0;
|
gap: 0;
|
||||||
z-index: 95;
|
z-index: 95;
|
||||||
border-bottom: 1px solid var(--warm);
|
border-bottom: 1px solid var(--warm);
|
||||||
animation: slideDown 0.3s ease;
|
animation: slide-down 0.3s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav.mobile-open .nav-links a {
|
nav.mobile-open .nav-links a {
|
||||||
@@ -1239,11 +1239,12 @@ footer {
|
|||||||
background: transparent;
|
background: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes slideDown {
|
@keyframes slide-down {
|
||||||
from {
|
from {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transform: translateY(-10px);
|
transform: translateY(-10px);
|
||||||
}
|
}
|
||||||
|
|
||||||
to {
|
to {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
transform: translateY(0);
|
transform: translateY(0);
|
||||||
|
|||||||
@@ -737,7 +737,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
|||||||
</div>
|
</div>
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<?php if (!empty($formErrors)): ?>
|
<?php if (!empty($formErrors)): ?>
|
||||||
<div id="form-result" class="form-errors">
|
<div id="form-errors" class="form-errors">
|
||||||
<ul>
|
<ul>
|
||||||
<?php foreach ($formErrors as $error): ?>
|
<?php foreach ($formErrors as $error): ?>
|
||||||
<li><?= escapeContactValue($error) ?></li>
|
<li><?= escapeContactValue($error) ?></li>
|
||||||
|
|||||||
Reference in New Issue
Block a user