male zmiany w ux

This commit is contained in:
Mateusz Gruszczyński
2025-07-07 22:26:26 +02:00
parent c8472c9423
commit 084e2f8221
3 changed files with 27 additions and 3 deletions

View File

@@ -116,7 +116,7 @@ input[type="checkbox"].large-checkbox::before {
input[type="checkbox"].large-checkbox:checked::before {
content: '✓';
color: #ffc107;
color: #ffffff;
}
input[type="checkbox"].large-checkbox:disabled::before {
@@ -136,3 +136,26 @@ input.form-control {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.info-bar-fixed {
position: fixed;
left: 0;
right: 0;
bottom: 0;
width: 100%;
color: #f8f9fa;
border-radius: 12px 12px 0 0;
text-align: center;
padding: 10px 8px;
font-size: 0.95rem;
z-index: 9999;
box-sizing: border-box;
}
@media (max-width: 600px) {
.info-bar-fixed {
font-size: 0.85rem;
padding: 8px 4px;
border-radius: 10px 10px 0 0;
}
}