Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion motomate/src/routes/(app)/settings/workflows/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -539,6 +539,9 @@
font-size: var(--text-base);
font-weight: 500;
color: var(--text);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.rule-name--muted {
color: var(--text-muted);
Expand Down Expand Up @@ -567,7 +570,10 @@
}
.rule-last-fired {
white-space: nowrap;
flex-shrink: 0;
overflow: hidden;
text-overflow: ellipsis;
flex-shrink: 1;
min-width: 0;
}
.rule-next-fire {
overflow: hidden;
Expand Down Expand Up @@ -689,4 +695,21 @@
color: var(--status-overdue);
border-color: var(--status-overdue);
}

@media (max-width: 600px) {
.rule-row {
flex-wrap: wrap;
gap: var(--space-3);
}
.rule-actions {
order: 3;
flex-direction: row;
align-items: center;
gap: var(--space-2);
width: 100%;
justify-content: flex-end;
padding-top: var(--space-2);
border-top: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
}
}
</style>
18 changes: 18 additions & 0 deletions motomate/src/routes/(app)/vehicles/[id]/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,8 @@
letter-spacing: -0.02em;
line-height: var(--leading-tight);
margin: 0;
overflow-wrap: break-word;
word-break: break-word;
}
.archived-tag {
font-size: var(--text-xs);
Expand All @@ -374,6 +376,9 @@
font-size: var(--text-sm);
color: var(--text-muted);
margin-top: 0.125rem;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.odo-display {
display: flex;
Expand Down Expand Up @@ -470,6 +475,19 @@
font-size: var(--text-2xl);
}
}
@media (max-width: 360px) {
.vehicle-avatar {
width: 44px;
height: 44px;
font-size: 1.375rem;
}
.odo-num {
font-size: var(--text-xl);
}
.vehicle-identity {
gap: 0.875rem;
}
}

/* Avatar button */
.vehicle-avatar {
Expand Down
27 changes: 19 additions & 8 deletions motomate/src/routes/(app)/vehicles/[id]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2147,11 +2147,17 @@
font-size: var(--text-base);
font-weight: 500;
color: var(--text);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.upcoming-detail {
font-size: var(--text-sm);
margin-top: 0.125rem;
color: var(--text-muted);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.upcoming-card--overdue .upcoming-detail {
color: var(--status-overdue);
Expand Down Expand Up @@ -2447,23 +2453,28 @@
color: var(--text);
}

@media (max-width: 480px) {
@media (max-width: 600px) {
.form-row {
grid-template-columns: 1fr;
}
.inline-form {
padding: 1rem;
}
}
@media (max-width: 480px) {
.entry-menu-btn {
opacity: 1;
width: 44px;
height: 44px;
}
}
@media (max-width: 380px) {
.form-row {
grid-template-columns: 1fr;
@media (pointer: coarse) {
.entry-menu-btn {
opacity: 1;
}
}

/* ── Attachment UI (form + timeline) ── */
/* Attachment UI (form + timeline) */
.form-attachments {
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -2526,7 +2537,7 @@
cursor: not-allowed;
}

/* ── Entry attachments (timeline read-only) ── */
/* Entry attachments (timeline read-only) */
.entry-attachments {
display: flex;
flex-wrap: wrap;
Expand All @@ -2535,7 +2546,7 @@
margin-top: 0.375rem;
}

/* ── Edit form attachments (inside entry-edit-card) ── */
/* Edit form attachments (inside entry-edit-card) */
.edit-attachments {
border-top: 1px solid var(--border);
margin-top: 0.625rem;
Expand Down Expand Up @@ -2607,7 +2618,7 @@
color: inherit;
}

/* ── Link picker ── */
/* Link picker */
.link-picker {
margin-top: 0.5rem;
border: 1px solid var(--border);
Expand Down
Loading