This commit is contained in:
Sangelo 2023-12-08 23:32:51 +01:00
parent 2cfaf2fb8a
commit 1de840fb78
3 changed files with 8 additions and 5 deletions

View file

@ -1,8 +1,6 @@
<script lang="ts">
import { goto } from '$app/navigation';
import IconNext from 'svelte-material-icons/ArrowRight.svelte'
function smoothScrollTo(elementId: string) {
const element = document.getElementById(elementId);
if (element) {

View file

@ -1,7 +1,7 @@
/* layout */
.container {
height: 100vh;
width: auto;
width: 100%;
scroll-snap-type: y mandatory;
overflow-y: scroll;
}

View file

@ -2,11 +2,11 @@
@media (max-width: 850px) {
content {
.content-container {
.container {
flex-wrap: wrap;
margin: 0;
.container {
.grid {
grid-template-columns: 6em 6em 6em 6em;
grid-template-rows: 6em 6em 6em;
gap: 1em 1em;
@ -27,7 +27,12 @@
.tip {
text-align: center;
line-height: 130%;
margin: 0;
}
.next {
background-size: 2em;
}
}
}
}