mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-12-20 04:22:29 -05:00
26 lines
No EOL
518 B
SCSS
26 lines
No EOL
518 B
SCSS
.playlist {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
|
|
.playlist-title {
|
|
display: flex;
|
|
justify-content: start;
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
line-height: 2.5rem;
|
|
}
|
|
|
|
.spinner {
|
|
width: 100%;
|
|
height: 50px;
|
|
}
|
|
|
|
.playlist-videos {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(13.125rem, auto));
|
|
justify-content: space-around;
|
|
align-items: start;
|
|
gap: 1rem;
|
|
}
|
|
} |