58 lines
1.2 KiB
Svelte
Raw Normal View History

2023-06-13 13:38:59 +01:00
<script>
import Header from '$lib/navigation/header.svelte'
2023-06-15 18:19:23 +01:00
import Nav from '$lib/navigation/nav.svelte'
2023-06-14 11:02:46 +01:00
const title = "More"
2023-06-13 13:38:59 +01:00
2023-06-14 11:02:46 +01:00
const links = [
2023-06-14 11:14:48 +01:00
{title: "Your Data", path: ""},
{title: "Location Reference Codes", path: ""},
{title: "Privacy Policy", path: ""},
{title: "App Versions", path: ""},
{title: "Statictics", path: ""}
2023-06-14 11:02:46 +01:00
]
2023-06-13 13:38:59 +01:00
</script>
2023-06-14 11:02:46 +01:00
<Header {title} />
2023-06-13 13:38:59 +01:00
2023-06-14 11:02:46 +01:00
{#each links as item}
<a href={item.path}>
<div>
<p>{item.title}</p>
</div>
</a>
{/each}
2023-06-13 13:38:59 +01:00
2023-06-14 11:02:46 +01:00
<Nav />
<style>
div {
width: 100%;
background: rgba(0, 0, 0, 0.226);
border-color: aliceblue;
border-width: 1px;
border-style: solid;
border-left: none;
border-right: none;
height: 50px;
}
a {
text-decoration: none;
height: 100%;
vertical-align: middle;
}
p {
color: white;
margin: 0;
padding-left: 10px;
text-align: left;
2023-06-14 11:14:48 +01:00
line-height: 50px;
2023-06-14 11:02:46 +01:00
vertical-align: middle;
font-weight: 600;
font-size: 20px;
}
2023-06-14 11:14:48 +01:00
@media (min-width: 600px) {
p {
text-align: center;
}
}
2023-06-14 11:02:46 +01:00
</style>