{t('approvalsBadge', { count: pendingCount })}
@@ -92,27 +164,29 @@ export default function NavBar() {
{isAdmin ? (
- {t('navUsers')}
+ {t('navUsers')}
) : null}
>
) : null}
>
) : (
<>
- {t('navLogin')}
+ {t('navLogin')}
- {t('navSignup')}
+ {t('navSignup')}
>
)}
- {t('navLanguage')}:
+
+ {t('navLanguage')}:
+
diff --git a/app/globals.css b/app/globals.css
index 2183c36..f3f714b 100644
--- a/app/globals.css
+++ b/app/globals.css
@@ -75,15 +75,20 @@ p {
}
.button {
- background: var(--accent);
- color: #0b1224;
- padding: 12px 16px;
+ display: inline-flex;
+ align-items: center;
+ justify-content: center;
+ gap: 8px;
+ min-height: 44px;
+ padding: 10px 16px;
border-radius: 12px;
border: none;
font-weight: 700;
cursor: pointer;
text-decoration: none;
- transition: transform 120ms ease, box-shadow 180ms ease;
+ background: var(--accent);
+ color: #0b1224;
+ transition: transform 120ms ease, box-shadow 180ms ease, background 120ms ease;
box-shadow: 0 15px 40px rgba(34, 211, 238, 0.16);
}
@@ -311,18 +316,31 @@ code {
label {
color: var(--muted);
+ display: flex;
+ flex-direction: column;
+ gap: 6px;
+ font-weight: 600;
}
input,
select,
textarea {
width: 100%;
- padding: 10px 12px;
+ padding: 12px 14px;
border-radius: 10px;
border: 1px solid rgba(148, 163, 184, 0.35);
background: rgba(255, 255, 255, 0.04);
color: var(--text);
font-size: 15px;
+ transition: border-color 120ms ease, box-shadow 120ms ease;
+}
+
+input:focus,
+select:focus,
+textarea:focus {
+ outline: none;
+ border-color: var(--accent);
+ box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2);
}
@media (max-width: 640px) {