FreeTube/src/renderer/components/ft-grid/ft-grid.css

7 lines
131 B
CSS

.ft-grid {
display: grid;
grid-template-columns: repeat(auto-fill, 240px);
justify-content: space-evenly;
grid-gap: 5px;
}