promenjen stajl za other polja, sad ima razmaka, grid za male ekrane

This commit is contained in:
2025-05-12 20:46:17 +02:00
parent fcf49f2da6
commit 7783fb3d69
2 changed files with 43 additions and 9 deletions

View File

@@ -163,6 +163,22 @@ body {
height: 100%;
}
.form-check.other-gap .other-row {
display: flex !important;
align-items: center !important;
flex-direction: row !important;
gap: 0 !important;
}
.other-gap {
display: flex !important;
gap: 2rem !important;
}
.other-gap > .form-control {
max-width: 350px;
}
@media (max-width: 768px) {
.inner-container {
padding: 60px;
@@ -212,4 +228,18 @@ body {
.insight-grid {
grid-template-columns: 1fr;
}
.form-check.other-gap .other-row {
flex-direction: column;
align-items: flex-start;
gap: 0;
}
.form-check.other-gap .form-control {
width: 100%;
max-width: 100%;
}
.other-gap {
display: grid !important;
gap: 0 !important;
}
}