feat: 图片相册与图片浏览

This commit is contained in:
2025-10-23 18:46:47 +08:00
parent f272a57aa3
commit df844bae11
7 changed files with 126 additions and 4 deletions

View File

@@ -37,3 +37,7 @@
.bg-button {
background: linear-gradient(90deg, #2d91ff 0%, #4de4ff 100%);
}
.bg-transparent {
background-color: transparent;
}

View File

@@ -2,3 +2,7 @@
.overflow-hidden {
overflow: hidden;
}
.overflow-auto {
overflow: auto;
}

View File

@@ -103,6 +103,14 @@
padding: 24px;
}
.pt-24 {
padding-top: 24px;
}
.pb-24 {
padding-bottom: 24px;
}
.pb-safe-area {
padding-bottom: Max(env(safe-area-inset-bottom), 12px);
}