fix: reverse game apparition order
This commit is contained in:
parent
642617938c
commit
92a54828de
|
|
@ -6,7 +6,7 @@
|
|||
title_picture_offset = "0px",
|
||||
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--picture-wrapper">
|
||||
<img
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@
|
|||
flex-direction: column;
|
||||
background: transparent;
|
||||
padding: 0;
|
||||
margin-bottom: 50px;
|
||||
|
||||
&--picture-wrapper {
|
||||
display: flex;
|
||||
|
|
|
|||
Loading…
Reference in New Issue