mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 01:25:52 -05:00
Align grid items on the left
use `flex-start` with margins to ensure proper spacing between, while still starting at the left of each row.
This commit is contained in:
parent
515bb59bc8
commit
28f96a1d0d
1 changed files with 2 additions and 1 deletions
|
@ -15,10 +15,11 @@
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
width: $cols12;
|
width: $cols12;
|
||||||
justify-content: space-between;
|
justify-content: flex-start;
|
||||||
}
|
}
|
||||||
|
|
||||||
.thumbnail {
|
.thumbnail {
|
||||||
|
margin: 6px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
||||||
&.project {
|
&.project {
|
||||||
|
|
Loading…
Reference in a new issue