diff --git a/src/lib/types.ts b/src/lib/types.ts
index 3b0d357..712d52b 100644
--- a/src/lib/types.ts
+++ b/src/lib/types.ts
@@ -1,19 +1,19 @@
export enum actionType {
- IntakeTote = 'Intake Tote',
- EjectTote = 'Eject Tote',
- IntakeBalloon = 'Intake Balloon',
- ScoreLow = 'Score Low',
- ScoreExternalTote = 'Score External Tote',
- ScoreInternalTote = 'Score Internal Tote',
- ScoreAnotherRobotsTote = 'Score Another Robots Tote'
+ IntakeTote = 'Intake Tote',
+ EjectTote = 'Eject Tote',
+ IntakeBalloon = 'Intake Balloon',
+ ScoreLow = 'Score Low',
+ ScoreExternalTote = 'Score External Tote',
+ ScoreInternalTote = 'Score Internal Tote',
+ ScoreAnotherRobotsTote = 'Score Another Robots Tote'
}
export enum actionResult {
- success = 'success',
- fail = 'fail'
+ success = 'success',
+ fail = 'fail'
}
export type ActionData = {
- type: actionType;
- result: actionResult;
-}
+ type: actionType;
+ result: actionResult;
+};
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte
index b5cccfa..8ee9618 100644
--- a/src/routes/+layout.svelte
+++ b/src/routes/+layout.svelte
@@ -1,12 +1,12 @@
+{@render children()}
+
-
-{@render children()}
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte
index 28b1357..78fc900 100644
--- a/src/routes/+page.svelte
+++ b/src/routes/+page.svelte
@@ -1,8 +1,4 @@
-
- hiiii :3
-
-
- scout
-
+
hiiii :3
+
scout
diff --git a/src/routes/scout/+page.svelte b/src/routes/scout/+page.svelte
index e6b4fb4..2de844f 100644
--- a/src/routes/scout/+page.svelte
+++ b/src/routes/scout/+page.svelte
@@ -13,8 +13,10 @@
-
+
-
-
+
+
diff --git a/tailwind.config.js b/tailwind.config.js
index d8fb534..b96a0a2 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -1,20 +1,20 @@
/** @type {import('tailwindcss').Config} */
export default {
- content: ['./src/**/*.{html,js,svelte,ts}'],
- theme: {
- colors: {
- "navbar_black": "#1c1c1c",
- "outline_gray": "#c2c2c2",
- "cresc_green": "#00d586",
- "bg_gray": "#2c2c2c",
- "slack_purple": "#4A154B",
- "robot_blue": "#0083E6",
- "robot_red": "#ED1C24",
- "fail_red": "#EE3C42",
- "btn_grey": "#5C5C5C",
- "text_white": "#ffffff"
- },
- extend: {},
- },
- plugins: [],
-}
+ content: ['./src/**/*.{html,js,svelte,ts}'],
+ theme: {
+ colors: {
+ navbar_black: '#1c1c1c',
+ outline_gray: '#c2c2c2',
+ cresc_green: '#00d586',
+ bg_gray: '#2c2c2c',
+ slack_purple: '#4A154B',
+ robot_blue: '#0083E6',
+ robot_red: '#ED1C24',
+ fail_red: '#EE3C42',
+ btn_grey: '#5C5C5C',
+ text_white: '#ffffff'
+ },
+ extend: {}
+ },
+ plugins: []
+};