feat: add new features, update theme and build config
- 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
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
height: 86px;
|
||||
background: #fff;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 0 0 1px rgba(0,0,0,0.04);
|
||||
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
|
||||
margin-right: 12px;
|
||||
padding: 8px 10px;
|
||||
box-sizing: border-box;
|
||||
@@ -22,25 +22,26 @@
|
||||
align-items: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
.date-item .label {
|
||||
margin-bottom: 6px;
|
||||
color: #999;
|
||||
.date-item .label {
|
||||
margin-bottom: 6px;
|
||||
color: #999;
|
||||
}
|
||||
.date-item .md {
|
||||
margin-bottom: 6px;
|
||||
color: #000;
|
||||
.date-item .md {
|
||||
margin-bottom: 6px;
|
||||
color: #000;
|
||||
}
|
||||
.date-item .status {
|
||||
font-size: 12px;
|
||||
color: #999;
|
||||
}
|
||||
.date-item .status {
|
||||
font-size: 12px;
|
||||
color: #999; }
|
||||
.date-item.selected {
|
||||
border: 1px solid $theme-color-500;
|
||||
border: 1px solid #0ccd58;
|
||||
background: $theme-color-50;
|
||||
}
|
||||
.date-item.selected .label,
|
||||
.date-item.selected .md,
|
||||
.date-item.selected .status {
|
||||
color: $theme-color-500;
|
||||
color: #0ccd58;
|
||||
}
|
||||
.date-item.disabled {
|
||||
opacity: 0.45;
|
||||
@@ -49,7 +50,7 @@
|
||||
position: absolute;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: $theme-color-500;
|
||||
background: #0ccd58;
|
||||
color: #fff;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
@@ -59,4 +60,4 @@
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 11px;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user