.PageHome { display: grid; grid-template-areas: "a" "b"; grid-template-rows: auto 1fr; grid-gap: 10px; width: 100%; height: 100%; } .Header { grid-area: a; } .RepositoryEditor { grid-area: b; }