format files

This commit is contained in:
Fred Boniface
2024-01-16 20:34:41 +00:00
parent e6ee0dc321
commit 23d75880b5
11 changed files with 82 additions and 79 deletions

View File

@@ -24,6 +24,6 @@
padding: 10px;
background-color: var(--island-bg-color);
border-radius: 10px;
box-shadow: 5px 5px 30px rgba(0,0,0,0.29);
box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.29);
}
</style>

View File

@@ -12,7 +12,7 @@
let errorDetail = {
code: '',
message: '',
message: ''
};
let nrcc: string[] = [];
@@ -37,8 +37,8 @@
}
return data.data;
}
errorDetail.code = data.obStatus.toString() || "UNKNOWN";
errorDetail.message = data.obMsg || "An unknown error occoured";
errorDetail.code = data.obStatus.toString() || 'UNKNOWN';
errorDetail.message = data.obMsg || 'An unknown error occoured';
throw new Error('Unable to Fetch Data');
}
</script>
@@ -75,7 +75,7 @@
{:catch}
<h2>Error</h2>
<p>ERR-CODE: {errorDetail.code}</p>
<p>Message:<br>{errorDetail.message}</p>
<p>Message:<br />{errorDetail.message}</p>
{/await}
<style>
@@ -86,4 +86,4 @@
.table-head-text {
color: white;
}
</style>
</style>

View File

@@ -38,7 +38,7 @@
width: 100%;
height: 50px;
background-color: rgb(54, 54, 54);
box-shadow: 0 -2px 30px rgba(0,0,0,0.19);
box-shadow: 0 -2px 30px rgba(0, 0, 0, 0.19);
}
footer a {

View File

@@ -21,9 +21,9 @@
const pageText: string[] = [
'<h3>A small Update</h3>' +
"<p>There is a new Facebook Support page <a href='https://www.facebook.com/owlboard.support'>'OwlBoard Support'</a></p>" +
'<p>You can use it to ask for help and give suggestions</p>' +
'<p>Help links have been updated.</p>',
"<p>There is a new Facebook Support page <a href='https://www.facebook.com/owlboard.support'>'OwlBoard Support'</a></p>" +
'<p>You can use it to ask for help and give suggestions</p>' +
'<p>Help links have been updated.</p>'
];
</script>
@@ -63,7 +63,7 @@
border-radius: 10px;
z-index: 2500;
box-shadow: 5px 5px 10px var(--box-shadow-color);
}
}
.navButton {
border-radius: 50px;

View File

@@ -19,27 +19,26 @@
/* Main Theme */
:root {
--main-bg-color: #404c55;
--second-bg-color: #2b343c;
--main-header-color: #dff3f3;
--main-text-color: #cce9e9;
--secondary-text-color: #02fcfc;
--main-link-color: #00b7b7;
--island-bg-color: #3c6f79de;
--island-bg-solid: #3c6f79;
--island-button-color: #404c55;
--island-link-color: #e1ebeb;
--island-header-color: #4fd1d1;
--island-text-color: #e1ebeb;
--overlay-island-bg-color: #3c6f79;
--box-shadow-color: rgba(0,0,0,0.19);
--box-shadow: 2px 2px 4px rgba(0,0,0,0.19);
--main-alert-color: #ed6d00;
--second-alert-color: #e77f00;
--main-warning-color: orange;
--main-bg-color: #404c55;
--second-bg-color: #2b343c;
--main-header-color: #dff3f3;
--main-text-color: #cce9e9;
--secondary-text-color: #02fcfc;
--main-link-color: #00b7b7;
--island-bg-color: #3c6f79de;
--island-bg-solid: #3c6f79;
--island-button-color: #404c55;
--island-link-color: #e1ebeb;
--island-header-color: #4fd1d1;
--island-text-color: #e1ebeb;
--overlay-island-bg-color: #3c6f79;
--box-shadow-color: rgba(0, 0, 0, 0.19);
--box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.19);
--main-alert-color: #ed6d00;
--second-alert-color: #e77f00;
--main-warning-color: orange;
}
/* Christmas Theme
:root {
--main-bg-color: #404c55;
@@ -57,4 +56,4 @@
--box-shadow-color: rgba(0,0,0,0.19);
--box-shadow: 2px 2px 4px rgba(0,0,0,0.19);
}
*/
*/