-
Instellingen
-
Beheer handelingen per zooltype
-
- {/* Add new handling card */}
-
-
- {/* Handling list */}
-
Huidige stappen ({activities.length})
- {activitiesQuery.isLoading ? (
-
Laden...
- ) : activities.length === 0 ? (
-
Nog geen stappen. Voeg er een toe hierboven.
- ) : (
-
- {activities.map((activity) => (
- -
- {editingId === activity.id ? (
- <>
- setEditName(e.target.value)}
- />
-
Van toepassing op
- setEditTypes((prev) => toggle(prev, type))}
- />
-
-
-
-
- >
- ) : (
- <>
-
-
{activity.name}
-
-
-
-
-
-
- {activity.insole_types.map((type) => (
-
- {type}
-
- ))}
-
- >
- )}
-
- ))}
-
- )}
-
- );
-}
diff --git a/apps/worker/src/styles.css b/apps/worker/src/styles.css
index ecde670..f9a0cce 100644
--- a/apps/worker/src/styles.css
+++ b/apps/worker/src/styles.css
@@ -274,6 +274,33 @@ body {
cursor: pointer;
}
+/* ---- Account ---- */
+.account-card {
+ gap: 4px;
+}
+
+.account-name {
+ font-size: 18px;
+ font-weight: 600;
+}
+
+.account-email {
+ color: var(--text-muted);
+ font-size: 15px;
+}
+
+.btn-logout {
+ width: 100%;
+ padding: 16px;
+ font-size: 16px;
+ font-weight: 600;
+ color: var(--danger);
+ background: #ffffff;
+ border: 1px solid var(--danger);
+ border-radius: 16px;
+ cursor: pointer;
+}
+
/* ---- History (Geschiedenis) ---- */
.history-header {
display: flex;