feat: enhance layout styles for better responsiveness and visual consistency

This commit is contained in:
sHa
2025-05-29 13:21:22 +03:00
parent 52a4292079
commit 2212c6db17
4 changed files with 13 additions and 10 deletions

View File

@@ -1183,7 +1183,7 @@
}
.selected-brand {
background: #2196F3;
background: #27ae60;
color: #fff;
border: none;
border-radius: 8px;
@@ -1202,7 +1202,7 @@
}
.selected-brand:hover {
background: #1976D2;
background: #219150;
}
.selected-brand .close {

View File

@@ -73,14 +73,7 @@
display: grid;
grid-template-columns: repeat(auto-fill, 200px);
gap: 1rem;
justify-content: space-between;
}
@media (max-width: 600px) {
.compact-view {
grid-template-columns: repeat(auto-fill, 160px);
gap: 0.75rem;
}
justify-content: space-evenly;
}
.no-results {

View File

@@ -227,10 +227,17 @@
</div>
<style>
.container {
min-height: 100vh;
display: flex;
flex-direction: column;
}
main {
padding: 0 1rem 2rem 1rem;
max-width: 1400px;
margin: 0 auto;
width: 100%;
flex: 1;
}
</style>