friend location layout adjustments

This commit is contained in:
pa
2025-10-31 20:17:48 +09:00
committed by Natsumi
parent 830f46b4dd
commit 53f253daea
2 changed files with 12 additions and 10 deletions
+4 -6
View File
@@ -12,8 +12,8 @@
v-model="cardScale"
class="friend-view__slider"
:min="0.6"
:max="1.2"
:step="0.05"
:max="1.0"
:step="0.01"
:show-tooltip="false" />
<el-input
v-model="searchTerm"
@@ -358,11 +358,9 @@
.friend-view__grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(var(--friend-card-min-width, 200px), 1fr));
grid-template-columns: repeat(auto-fit, minmax(var(--friend-card-min-width, 200px), max-content));
gap: var(--friend-card-gap, 18px);
padding: 6px;
box-sizing: border-box;
width: 100%;
justify-content: start;
}
.friend-view__instances {