#grid-container {
    display: grid;
    justify-items: start;
}
.grid-items {
    justify-self: end;
}

The grid items are positioned to the right (end) of the row.

Comments