Replace SCSS variable usages with explicit pixel/hex values for consistent styling across all components Fix broken template syntax including missing class spaces and incorrect closing tags Migrate constant and API imports to centralized @/constants and @/api modules Add new utility classes: IdUtils, CallbackUtils, and TimerUtils Add new chat conversation API endpoints for recent conversations and message lists Add new Discovery page components (FindTabs, QuickQuestions, CardSwiper) and their styles Update app store config to use environment variables for base API and WebSocket URLs Add new selected tab icon assets
57 lines
930 B
SCSS
57 lines
930 B
SCSS
.store-address {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-top: 12px;
|
|
padding: 12px;
|
|
background-color: #ffffff;
|
|
border-top: 1px solid #e0e0e0;
|
|
|
|
// 左侧文本容器
|
|
.text-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
}
|
|
|
|
.location-label {
|
|
color: $text-color-800;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.address-text {
|
|
margin-top: 4px;
|
|
color: $text-color-600;
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
// 右侧操作按钮组
|
|
.actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin-left: 16px;
|
|
}
|
|
|
|
.actions-btn {
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 10px;
|
|
background-color: #f5f5f5;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.actions-icon {
|
|
font-size: 16px;
|
|
line-height: 16px;
|
|
}
|
|
|
|
.actions-text {
|
|
font-size: 12px;
|
|
color: $text-color-600;
|
|
}
|
|
}
|