Update home page css layout
This commit is contained in:
parent
2a22519d88
commit
d6fb920b18
3 changed files with 9 additions and 13 deletions
|
@ -16,11 +16,10 @@
|
|||
#container-of-container {
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
bottom: 10px;
|
||||
left: 0;
|
||||
display: grid;
|
||||
height: 10vh;
|
||||
margin-bottom: 10px;
|
||||
height: 10dvh;
|
||||
}
|
||||
#container {
|
||||
display: flex;
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
max-width: 100%;
|
||||
width: calc(100% - 20px);
|
||||
margin: 0 auto;
|
||||
height: 100%;
|
||||
}
|
||||
.route-card-right {
|
||||
border-top-right-radius: 45px;
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
<script>
|
||||
import BottomAppBar from '$lib/components/BottomAppBar.svelte';
|
||||
<script lang="ts">
|
||||
import Path from '$lib/components/Path.svelte';
|
||||
import Splash from '$lib/components/Splash.svelte';
|
||||
|
||||
|
@ -22,10 +21,10 @@
|
|||
main {
|
||||
display: grid;
|
||||
margin: 0 auto;
|
||||
height: 100%;
|
||||
height: calc(90dvh - 10px);
|
||||
width: 100%;
|
||||
font-family: 'Roboto-Regular';
|
||||
grid-template-rows: 16% 16% 16% 16% 16% 16%;
|
||||
grid-template-rows: 70px auto;
|
||||
}
|
||||
|
||||
.bold {
|
||||
|
@ -37,17 +36,14 @@
|
|||
display: grid;
|
||||
width: 100%;
|
||||
place-content: center;
|
||||
grid-template-columns: 1fr;
|
||||
text-align: center;
|
||||
grid-row-start: 1;
|
||||
grid-row-end: 1;
|
||||
}
|
||||
|
||||
#route-cards {
|
||||
grid-row-start: 2;
|
||||
grid-row-end: 7;
|
||||
padding: 20px;
|
||||
display: grid;
|
||||
width: 100%;
|
||||
gap: 5px;
|
||||
height: 100%;
|
||||
gap: 10px;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue