I have a note app, and this is my styling for note grid:
.notes-grid{
display: grid;
grid-template-columns: repeat(auto-fit,minmax(250px, 0.2fr));
gap: 10px;
}
grid template columns was
repeat(auto-fit,minmax(250px, 1fr)); before, but i want to make the gap responsive, not the size of notes.
I set an initial value for gap, and it is 10px. When grid starts to wrap, i want to change gap responsibly to fill blank area. I want to spread notes across the width to right of 'note3'