feat: Add game and gallery screens

This commit is contained in:
sthag 2025-10-27 21:23:26 +01:00
parent e21b9d36b5
commit 3c9c438b25
4 changed files with 123 additions and 0 deletions

View file

@ -0,0 +1,18 @@
@use "../../hippie-style/hippie";
.gallery {
display: flex;
flex-wrap: wrap;
justify-content: left;
align-items: start;
gap: 10px;
background-color: hippie.$color_back_io;
& > div {
background-color: hotpink;
aspect-ratio: 2 / 3;
width: 128px;
transition: width 0.3s ease;
}
}