fix: critical bug fixes - routes UUID, image paths, favorites loading, bottom nav debounce
This commit is contained in:
@ -211,7 +211,8 @@ async function saveShuttle() {
|
||||
|
||||
<div class="preview-container">
|
||||
<!-- PREVIEW CARD -->
|
||||
<div class="shuttle-card-preview" :class="{ expanded: true }" :style="{ backgroundImage: `url(${previewImageUrl})` }">
|
||||
<div class="shuttle-card-preview" :class="{ expanded: true }">
|
||||
<img :src="previewImageUrl" class="shuttle-card-bg" @error="(e) => (e.target as HTMLImageElement).src = 'https://images.unsplash.com/photo-1449034446853-66c86144b0ad?q=80&w=2070&auto=format&fit=crop'" />
|
||||
<div class="shuttle-main-info">
|
||||
<div class="shuttle-header-mini">
|
||||
<div class="company-badge">
|
||||
@ -516,12 +517,11 @@ async function saveShuttle() {
|
||||
border-radius: 20px;
|
||||
overflow: hidden;
|
||||
border: 1px solid rgba(255,255,255,0.12);
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
box-shadow: 0 30px 60px rgba(0,0,0,0.5);
|
||||
background: #101820;
|
||||
}
|
||||
|
||||
.shuttle-card-preview::before {
|
||||
@ -534,7 +534,7 @@ async function saveShuttle() {
|
||||
rgba(0, 0, 0, 0.65) 55%,
|
||||
rgba(0, 0, 0, 0.30) 100%
|
||||
);
|
||||
z-index: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.shuttle-card-preview.expanded {
|
||||
@ -553,7 +553,7 @@ async function saveShuttle() {
|
||||
.shuttle-main-info,
|
||||
.shuttle-details {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
z-index: 2;
|
||||
padding: 18px 20px;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user