fix: reverse game apparition order
This commit is contained in:
parent
642617938c
commit
92a54828de
|
|
@ -6,7 +6,7 @@
|
||||||
title_picture_offset = "0px",
|
title_picture_offset = "0px",
|
||||||
title_color = "var(--color-primary)"
|
title_color = "var(--color-primary)"
|
||||||
) %}
|
) %}
|
||||||
{% for game in glob("games/*.md") | map('markdown') %}
|
{% for game in glob("games/*.md") | reverse | map('markdown') %}
|
||||||
<div class="game">
|
<div class="game">
|
||||||
<div class="game--picture-wrapper">
|
<div class="game--picture-wrapper">
|
||||||
<img
|
<img
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
margin-bottom: 50px;
|
||||||
|
|
||||||
&--picture-wrapper {
|
&--picture-wrapper {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue