Convert multiple pages into SPA

This commit is contained in:
2025-10-09 15:48:23 +02:00
parent c616b2da7f
commit 06d04a1abc
110 changed files with 1245 additions and 1319 deletions

View File

@@ -15,7 +15,7 @@ import OtherPlans from "./OtherPlans.svelte";
</p>
</section>
<div class="vertical_scroll">
<div class="horizontal_scroll">
<div class="grid">
<div></div>
<div class="top_row free_feat">
@@ -271,20 +271,21 @@ import OtherPlans from "./OtherPlans.svelte";
font-weight: bold;
}
.vertical_scroll {
.horizontal_scroll {
overflow-x: scroll;
overflow-y: hidden;
width: 100%;
padding: 10px;
}
.grid {
display: inline-grid;
display: grid;
grid-auto-flow: row;
grid-template-columns: 9em 1fr 1fr 1fr;
min-width: 40em;
min-width: 50em;
max-width: 70em;
gap: 5px;
margin: 10px;
margin: auto;
}
.grid > div {
justify-content: center;