fix text position

This commit is contained in:
Mateusz Gruszczyński
2026-03-27 11:50:01 +01:00
parent 4c3786bb7b
commit e14ea5445e
2 changed files with 31 additions and 0 deletions

BIN
shopping_app.zip Normal file

Binary file not shown.

View File

@@ -5875,3 +5875,34 @@ body:not(.sorting-active) .drag-handle {
justify-self: end;
}
}
/* v15 2026-03-27: /share mobile row text parity with /list */
@media (max-width: 575.98px) {
.endpoint-list_share .shopping-item-main,
.endpoint-shared_list .shopping-item-main {
align-items: center;
}
.endpoint-list_share .shopping-item-head,
.endpoint-shared_list .shopping-item-head {
display: flex;
align-items: center;
justify-content: space-between;
gap: .45rem;
}
.endpoint-list_share .shopping-item-text,
.endpoint-shared_list .shopping-item-text,
.endpoint-list_share .shopping-item-main > .large-checkbox,
.endpoint-shared_list .shopping-item-main > .large-checkbox,
.endpoint-list_share .shopping-item-actions,
.endpoint-shared_list .shopping-item-actions {
align-self: center;
}
.endpoint-list_share .shopping-item-actions,
.endpoint-shared_list .shopping-item-actions {
margin-left: auto;
justify-self: auto;
}
}