Mobile fixes
This commit is contained in:
fraxle
2026-06-02 19:36:54 +01:00
parent 51e5381de6
commit bf4c1a0136
4 changed files with 258 additions and 68 deletions
+20
View File
@@ -1126,6 +1126,26 @@
margin: 0;
transform: translateY(-50%) rotate(45deg);
}
/* Profile cards are full-bleed image tiles, not slim label pills — the
block/ellipsis treatment above collapses their flex scene to 0 height
and hides the thumbnail. Restore the column layout for them. */
.cs-btn.profile-card {
display: flex !important;
flex-direction: column;
padding: 0 !important;
}
.cs-btn.profile-card .cs-btn-label {
width: auto; /* span the full width via its left/right pins */
}
.cs-btn.profile-card .cs-arrow {
top: auto;
bottom: 7px;
transform: rotate(45deg); /* pinned bottom-right, not vertically centred */
}
.cs-wrap.open .cs-btn.profile-card .cs-arrow {
transform: rotate(225deg); /* keep the open-state flip */
}
}