diff --git a/README.md b/README.md index 3620165..337d398 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # inflatedchickens ## usage + ```bash # install dependencies bun i diff --git a/bun.lockb b/bun.lockb index 1cffc2e..1e6848d 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/postcss.config.js b/postcss.config.js index 2e7af2b..0f77216 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,6 +1,6 @@ export default { - plugins: { - tailwindcss: {}, - autoprefixer: {}, - }, -} + plugins: { + tailwindcss: {}, + autoprefixer: {} + } +}; diff --git a/src/app.html b/src/app.html index 165a387..00b6bae 100644 --- a/src/app.html +++ b/src/app.html @@ -1,12 +1,12 @@ - + - - - - - %sveltekit.head% - - -
%sveltekit.body%
- + + + + + %sveltekit.head% + + +
%sveltekit.body%
+ diff --git a/src/lib/components/Action.svelte b/src/lib/components/Action.svelte index 647d543..53dcd92 100644 --- a/src/lib/components/Action.svelte +++ b/src/lib/components/Action.svelte @@ -1,11 +1,17 @@ - diff --git a/src/lib/components/Timeline.svelte b/src/lib/components/Timeline.svelte index 820141d..9d6700a 100644 --- a/src/lib/components/Timeline.svelte +++ b/src/lib/components/Timeline.svelte @@ -2,7 +2,7 @@ import type { ActionData } from '$lib/types'; import Action from './Action.svelte'; - let { actions = $bindable() }: { actions: ActionData[] } = $props() + let { actions = $bindable() }: { actions: ActionData[] } = $props();
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: [] +};