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>
|
||||
|
||||
<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);
|
||||
|
||||
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user