@import '../../node_modules/reset-css/sass/reset'; body { // background-color: red; } .container { display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(5, 1fr); grid-column-gap: 0px; grid-row-gap: 0px; } .sidebar { grid-area: 1 / 1 / 6 / 2; } .header { grid-area: 1 / 2 / 2 / 6; } .main { grid-area: 2 / 2 / 6 / 6; }