- Add 40+ new UI components including chat modules, discovery cards, photo galleries, FAQ and booking tools - Standardize brand color across all styles by replacing $theme-color-500 SCSS variables with #0ccd58 - Add sass 1.58.3 dependency and update vite config for modern scss compiler support - Refactor existing components (AddCarCrad, login page) and remove unused /quick/list router route - Add utility functions for URL parameter handling - Add static assets including custom znicons font, component images and icons - Fix scss syntax issues and deprecation warnings
70 lines
1.1 KiB
SCSS
70 lines
1.1 KiB
SCSS
.poi-detail-card {
|
|
border: 1px solid rgba(15, 23, 42, 0.04);
|
|
box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
|
|
}
|
|
|
|
.poi-detail-card__hero {
|
|
height: 206px;
|
|
padding: 8px 8px 0;
|
|
}
|
|
|
|
.poi-detail-card__badge {
|
|
position: absolute;
|
|
top: 18px;
|
|
left: 22px;
|
|
min-height: 30px;
|
|
padding: 0 12px;
|
|
border-radius: 999px;
|
|
color: #059669;
|
|
background: rgba(255, 255, 255, 0.9);
|
|
backdrop-filter: blur(8px);
|
|
}
|
|
|
|
.poi-detail-card__badge-icon {
|
|
font-size: 13px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.poi-detail-card__body {
|
|
padding: 18px 26px 24px;
|
|
}
|
|
|
|
.poi-detail-card__title {
|
|
line-height: 32px;
|
|
letter-spacing: 0;
|
|
}
|
|
|
|
.poi-detail-card__tip {
|
|
min-height: 46px;
|
|
margin-top: 16px;
|
|
padding: 0 14px;
|
|
border: 1px solid #d1fae5;
|
|
border-radius: 12px;
|
|
background: linear-gradient(90deg, #ecfdf5 0%, rgba(240, 253, 244, 0.34) 100%);
|
|
}
|
|
|
|
.poi-detail-card__spark {
|
|
line-height: 1;
|
|
}
|
|
|
|
.poi-detail-card__tip-text {
|
|
flex: 1;
|
|
min-width: 0;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.poi-detail-card__button {
|
|
height: 54px;
|
|
margin-top: 16px;
|
|
border-radius: 14px;
|
|
}
|
|
|
|
.poi-detail-card__button.is-disabled {
|
|
opacity: 0.55;
|
|
}
|
|
|
|
.poi-detail-card__button-icon {
|
|
font-size: 18px;
|
|
line-height: 1;
|
|
}
|