new card for roadworthiness, link to sims portal, bettwe error handling
Deploy static content to Pages / deploy (push) Has been cancelled

This commit is contained in:
2026-03-22 01:56:55 +05:00
parent 167fe10bb2
commit 9e4014f295
3 changed files with 75 additions and 35 deletions
+30 -1
View File
@@ -234,6 +234,19 @@ body {
align-items: start;
}
.main-content.three-column {
max-width: 1400px;
grid-template-columns: 1fr 1fr 1fr;
}
/* Card Body */
.card-body {
padding: 24px;
display: flex;
flex-direction: column;
gap: 20px;
}
/* Cards */
.card {
background-color: var(--md-sys-color-surface);
@@ -493,11 +506,27 @@ body {
}
/* Responsive Styles */
@media (max-width: 1200px) {
.main-content.three-column {
grid-template-columns: 1fr 1fr;
}
.main-content.three-column .preview-card {
grid-column: span 2;
}
}
@media (max-width: 900px) {
.main-content {
.main-content,
.main-content.three-column {
grid-template-columns: 1fr;
}
.main-content.three-column .preview-card {
grid-column: span 1;
order: -1;
}
.preview-card {
position: static;
order: -1;