Enhance mobile UI
Build and Push Lunchtime Images (Kaniko) / build-and-push (push) Successful in 1m39s

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
Simon Gruber
2026-05-07 10:53:11 +02:00
parent cacdb5b2bd
commit 1ff82ec2ba
@@ -223,11 +223,11 @@ export default function AdminSubmissionsCard({
placeholder="Search"
value={searchQuery}
onChange={(event) => onSearchQueryChange(event.target.value)}
style={{ flex: "1 1 260px" }}
style={{ flex: isMobile ? "1 1 100%" : "3 1 0%" }}
/>
<Select
value={selectedSubmissionState}
style={{ flex: "1 1 140px" }}
style={{ flex: isMobile ? "1 1 calc(50% - 4px)" : "1 1 0%" }}
options={[
{ label: "Show all", value: "all" },
{ label: "Show pending", value: "pending" },
@@ -238,7 +238,7 @@ export default function AdminSubmissionsCard({
/>
<Select
value={sortBy}
style={{ flex: "1 1 120px" }}
style={{ flex: isMobile ? "1 1 calc(50% - 4px)" : "1 1 0%" }}
options={[
{ label: "by time", value: "time" },
{ label: "by order", value: "order" },
@@ -305,7 +305,7 @@ export default function AdminSubmissionsCard({
);
}}
style={{
maxHeight: "80vh",
maxHeight: "66vh",
overflowY: "auto",
overflowX: "hidden"
}}