Fix CSS parsing issues by avoiding grid-column shorthand and cleaning comments

This commit is contained in:
2026-03-03 10:14:13 -05:00
parent 9d8a535929
commit b50c2cc82b
2 changed files with 6 additions and 7 deletions

View File

@ -174,8 +174,7 @@ function getShiftLabel(shift: string) {
</template>
<style scoped>
FILTROS PREMIUM
*/
/* FILTROS PREMIUM */
.filters-container {
padding: 0 1rem 1.5rem;
}
@ -288,9 +287,7 @@ function getShiftLabel(shift: string) {
color: var(--active-color);
}
/* ═══════════════════════════════════════════
GRID Y TARJETAS PREMIUM
═══════════════════════════════════════════ */
/* GRID Y TARJETAS PREMIUM */
.taxis-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
@ -476,7 +473,8 @@ function getShiftLabel(shift: string) {
}
.empty-state {
grid-column: 1 / -1;
grid-column-start: 1;
grid-column-end: -1;
text-align: center;
padding: 4rem 2rem;
color: var(--text-secondary);

View File

@ -417,7 +417,8 @@ onMounted(async () => {
}
.empty-state {
grid-column: 1 / -1;
grid-column-start: 1;
grid-column-end: -1;
text-align: center;
padding: 4rem 2rem;
color: var(--text-secondary);