Margin fixes

This commit is contained in:
Fred Boniface
2023-07-11 22:59:41 +01:00
parent 0c5d488d1f
commit 8676a62f1e
15 changed files with 55 additions and 21 deletions

View File

@@ -6,14 +6,14 @@
const links = [
{ title: 'Your Data', path: '/more/data' },
{ title: 'Registration', path: '/more/reg' },
{ title: 'Settings', path: '/more/settings' },
{ title: 'Report Issue', path: '/more/report' },
{ title: 'About', path: '/more/about' },
{ title: 'Location Reference Code Lookup', path: '/more/corpus' },
{ title: 'Reason Code Lookup', path: '/more/reasons' },
{ title: 'Privacy Policy', path: '/more/privacy' },
{ title: 'Component Versions', path: '/more/versions' },
{ title: 'Statictics', path: '/more/statistics' },
{ title: 'Settings', path: '/more/settings' },
{ title: 'Report Issue', path: '/more/report' },
{ title: 'About', path: '/more/about' }
{ title: 'Statistics', path: '/more/statistics' }
];
</script>

View File

@@ -20,6 +20,10 @@
<Nav />
<style>
p {
margin-left: 10px;
margin-right: 10px;
}
.neg {
margin-top: -40px;
margin-bottom: 40px;

View File

@@ -100,6 +100,9 @@
<Nav />
<style>
p {
margin: 10px;
}
input {
font-family: urwgothic, sans-serif;
border-radius: 50px;

View File

@@ -52,6 +52,9 @@
<Nav />
<style>
p {
margin: 10px;
}
.api_response {
color: white;
}

View File

@@ -85,6 +85,7 @@
<style>
p {
margin: 10px;
margin-top: 20px;
}
input {

View File

@@ -88,6 +88,9 @@
<Nav />
<style>
p {
margin: 10px;
}
ul {
text-align: left;
color: white;

View File

@@ -71,3 +71,9 @@
<p>You are now logged in</p>
{/if}
<Nav />
<style>
p {
margin: 14px;
}
</style>

View File

@@ -127,6 +127,10 @@
<Nav />
<style>
p {
margin-left: 10px;
margin-right: 10px;
}
select {
text-align: center;
border: none;

View File

@@ -27,6 +27,7 @@
{#await getData()}
<Loading />
{:then data}
<br />
<p>API Server:<br /><span>{data?.hostname}</span></p>
<p>Runtime Mode: <span>{data?.runtimeMode}</span></p>
<p>Stats Reset: <span>{U2L(data?.reset) || 'Unknown'}</span></p>
@@ -70,6 +71,7 @@
color: lightgray;
}
h2 {
font-family: urwgothic, sans-serif;
margin-bottom: 2px;
margin-top: 8px;
}

View File

@@ -113,6 +113,10 @@
<Nav />
<style>
p {
margin-left: 10px;
margin-right: 10px;
}
.label {
font-weight: 600;
color: var(--main-text-color);

View File

@@ -86,7 +86,9 @@
{/if}
{#each data as service}
<TrainDetail {service} />
{#if service}
<TrainDetail {service} />
{/if}
{/each}
<Nav />