Convert multiple pages into SPA
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user