record meals that were added to list, allow delete with ingredients
This commit is contained in:
@@ -67,6 +67,7 @@ h3 { margin-bottom: 6px; font-size: 1rem; }
|
||||
.muted { color: var(--muted); }
|
||||
|
||||
.page-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 34px; }
|
||||
.page-heading h1.page-title { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
|
||||
.dashboard-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(260px, .8fr); gap: 22px; align-items: start; }
|
||||
.panel { padding: 26px; border: 1px solid rgba(221, 225, 210, .9); border-radius: 24px; background: rgba(255, 253, 248, .88); box-shadow: var(--shadow); }
|
||||
.panel-heading { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 22px; }
|
||||
@@ -244,6 +245,15 @@ textarea:focus { border-color: var(--deep-sage); box-shadow: 0 0 0 4px rgba(85,
|
||||
.presence-list { display: grid; gap: 12px; }
|
||||
.presence-person { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 700; }
|
||||
.avatar { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 11px; color: var(--deep-sage); background: #e6f0df; font-size: .7rem; font-weight: 900; }
|
||||
.list-meals { display: grid; gap: 8px; }
|
||||
.list-meal-row { display: flex; align-items: center; gap: 10px; padding: 6px 4px; border-bottom: 1px solid #edf0e6; }
|
||||
.list-meal-row:last-child { border-bottom: 0; }
|
||||
.list-meal-icon { display: grid; place-items: center; flex: 0 0 auto; width: 30px; height: 30px; border-radius: 10px; color: var(--deep-sage); background: #eef4e9; font-size: .95rem; }
|
||||
.list-meal-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .9rem; font-weight: 700; }
|
||||
.list-meal-remove { margin: 0; flex: 0 0 auto; }
|
||||
.list-meal-remove-button { padding: 2px 7px; border: 0; border-radius: 7px; color: var(--muted); background: transparent; cursor: pointer; font-size: .8rem; line-height: 1; }
|
||||
.list-meal-remove-button:hover { color: var(--coral); background: #fbeae4; }
|
||||
.list-meals-panel .add-meal-button { margin-top: 12px; width: 100%; }
|
||||
.sharing-panel p, .tip-panel p { color: var(--muted); font-size: .86rem; }
|
||||
.invite-result { margin-top: 15px; }
|
||||
.invite-link-result { padding: 11px; border-radius: 12px; background: #f1f5ec; }
|
||||
|
||||
Reference in New Issue
Block a user