fix travel style

This commit is contained in:
Timi
2025-12-16 16:57:49 +08:00
parent e650571563
commit f0f2815971
32 changed files with 1238 additions and 594 deletions

View File

@ -1,6 +1,6 @@
// pages/main/travel-location-editor/index.less
.container {
.travel-location-editor {
width: 100vw;
min-height: 100vh;
background: var(--theme-bg-secondary);
@ -14,7 +14,7 @@
align-items: center;
flex-direction: column;
.loading-text {
.text {
color: var(--theme-text-secondary);
margin-top: 24rpx;
font-size: 28rpx;
@ -24,32 +24,31 @@
.section {
margin-top: 48rpx;
> .title {
color: var(--theme-text-secondary);
padding: 0 32rpx;
font-size: 28rpx;
line-height: 64rpx;
}
.location {
.title {
width: 2em;
}
}
.picker .slot {
gap: 16rpx;
display: flex;
align-items: center;
}
.location-slot {
gap: 16rpx;
display: flex;
align-items: center;
.location-text {
color: var(--theme-text-primary);
font-size: 28rpx;
}
.location-placeholder {
color: var(--theme-text-placeholder);
font-size: 28rpx;
}
}
&.media {
.gallery {
gap: 10rpx;
padding: 0 6rpx;
display: grid;
grid-template-columns: repeat(3, 1fr);
@ -67,6 +66,10 @@
margin: 0;
font-size: 80rpx;
background: transparent;
&::after {
border-radius: 0;
}
}
.thumbnail {
@ -224,3 +227,14 @@
}
}
}
.delete-dialog {
padding: 16rpx 0;
.tips {
color: var(--theme-text-secondary);
font-size: 28rpx;
line-height: 1.5;
margin-bottom: 24rpx;
}
}