fix: adjust layout of plan selector for mobile

This commit is contained in:
2026-07-14 22:24:46 +02:00
parent 3b6a87752b
commit a6044f3a83
+4 -1
View File
@@ -138,6 +138,7 @@ function dateToValueString(time) {
<i>arrow_left_alt</i>
<span class="date-label">{{ formatDateShort(get(prev).from) }} - {{ formatDateShort(get(prev).to) }}</span>
</button>
<div v-else></div>
<div class="title">
<template v-if="groups.length > 0">
@@ -151,6 +152,7 @@ function dateToValueString(time) {
<span class="date-label">{{ formatDateShort(get(next).from) }} - {{ formatDateShort(get(next).to) }}</span>
<i>arrow_right_alt</i>
</button>
<div v-else></div>
</div>
<div class="admin-row" v-if="admin && groups.length > 0">
@@ -173,10 +175,11 @@ function dateToValueString(time) {
gap: 6px;
.top-row {
display: flex;
display: grid;
align-items: center;
width: 100%;
gap: 6px;
grid-template-columns: 60px 1fr 60px;
}
.arrow {