Remove unused links

This commit is contained in:
Fred Boniface 2023-06-14 11:14:48 +01:00
parent 9d0a9c607e
commit 5076b2a514
2 changed files with 12 additions and 6 deletions

View File

@ -7,7 +7,7 @@
pngPath: "/images/nav/home_icon-25.png" pngPath: "/images/nav/home_icon-25.png"
}, },
{ {
title: "PIS", title: "PIS Finder",
path: "/pis", path: "/pis",
svgPath: "", svgPath: "",
pngPath: "" pngPath: ""

View File

@ -4,11 +4,11 @@
const title = "More" const title = "More"
const links = [ const links = [
{title: "Your Data", path: "/more/profile"}, {title: "Your Data", path: ""},
{title: "Location Reference Codes", path: "/more/reference-data"}, {title: "Location Reference Codes", path: ""},
{title: "Privacy Policy", path: "/more/privacy"}, {title: "Privacy Policy", path: ""},
{title: "App Versions", path: "/more/versions"}, {title: "App Versions", path: ""},
{title: "Statictics", path: "/more/stats"} {title: "Statictics", path: ""}
] ]
</script> </script>
@ -45,8 +45,14 @@
margin: 0; margin: 0;
padding-left: 10px; padding-left: 10px;
text-align: left; text-align: left;
line-height: 50px;
vertical-align: middle; vertical-align: middle;
font-weight: 600; font-weight: 600;
font-size: 20px; font-size: 20px;
} }
@media (min-width: 600px) {
p {
text-align: center;
}
}
</style> </style>