Fix CSS parsing issues by avoiding grid-column shorthand and cleaning comments
This commit is contained in:
@ -174,8 +174,7 @@ function getShiftLabel(shift: string) {
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
FILTROS PREMIUM
|
/* FILTROS PREMIUM */
|
||||||
═══════════════════════════════════════════ */
|
|
||||||
.filters-container {
|
.filters-container {
|
||||||
padding: 0 1rem 1.5rem;
|
padding: 0 1rem 1.5rem;
|
||||||
}
|
}
|
||||||
@ -288,9 +287,7 @@ function getShiftLabel(shift: string) {
|
|||||||
color: var(--active-color);
|
color: var(--active-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ═══════════════════════════════════════════
|
/* GRID Y TARJETAS PREMIUM */
|
||||||
GRID Y TARJETAS PREMIUM
|
|
||||||
═══════════════════════════════════════════ */
|
|
||||||
.taxis-grid {
|
.taxis-grid {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
|
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
|
||||||
@ -476,7 +473,8 @@ function getShiftLabel(shift: string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.empty-state {
|
.empty-state {
|
||||||
grid-column: 1 / -1;
|
grid-column-start: 1;
|
||||||
|
grid-column-end: -1;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 4rem 2rem;
|
padding: 4rem 2rem;
|
||||||
color: var(--text-secondary);
|
color: var(--text-secondary);
|
||||||
|
|||||||
@ -417,7 +417,8 @@ onMounted(async () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.empty-state {
|
.empty-state {
|
||||||
grid-column: 1 / -1;
|
grid-column-start: 1;
|
||||||
|
grid-column-end: -1;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 4rem 2rem;
|
padding: 4rem 2rem;
|
||||||
color: var(--text-secondary);
|
color: var(--text-secondary);
|
||||||
|
|||||||
Reference in New Issue
Block a user