-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/flamingchickens1540/inflate…
…dchickens into hanya/timelinestyle
- Loading branch information
Showing
13 changed files
with
122 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
indent_style = space | ||
indent_size = 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Format | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
format: | ||
runs-on: ubuntu-latest | ||
name: Format Files | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: oven-sh/setup-bun@v2 | ||
- run: bun install | ||
- name: Prettier | ||
run: bun run format ./src | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }} | ||
- uses: stefanzweifel/git-auto-commit-action@v4 | ||
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }} | ||
with: | ||
commit_message: 'style: format files' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
# inflatedchickens | ||
|
||
## usage | ||
|
||
```bash | ||
# install dependencies | ||
bun i | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export default { | ||
plugins: { | ||
tailwindcss: {}, | ||
autoprefixer: {}, | ||
}, | ||
} | ||
plugins: { | ||
tailwindcss: {}, | ||
autoprefixer: {} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<link rel="icon" href="flamingChicken.png" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
%sveltekit.head% | ||
</head> | ||
<body data-sveltekit-preload-data="hover"> | ||
<div style="display: contents">%sveltekit.body%</div> | ||
</body> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<link rel="icon" href="flamingChicken.png" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
%sveltekit.head% | ||
</head> | ||
<body data-sveltekit-preload-data="hover"> | ||
<div style="display: contents">%sveltekit.body%</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,27 @@ | ||
<script lang="ts"> | ||
import type { ActionData } from '$lib/types'; | ||
let { action = $bindable(), deleteself }: { action: ActionData; deleteself: () => void } = $props() | ||
let { action = $bindable(), deleteself }: { action: ActionData; deleteself: () => void } = | ||
$props(); | ||
let actionBorderColor = $derived(action.result === 'success' ? 'border-cresc_green' : 'border-fail_red'); | ||
let actionBorderColor = $derived( | ||
action.result === 'success' ? 'border-cresc_green' : 'border-fail_red' | ||
); | ||
let actionBackgroundColor = $derived( | ||
action.result === 'success' ? 'bg-cresc_green' : 'bg-fail_red' | ||
); | ||
</script> | ||
|
||
<button class="{actionBorderColor} w-full p-1 rounded border-2 text-text_yellow" onclick={deleteself}> | ||
<!-- <button --> | ||
<!-- class="{actionBorderColor} w-full p-1 rounded border-2 text-text_yellow" --> | ||
<!-- onclick={deleteself} --> | ||
<!-- > --> | ||
<!-- {action.type} --> | ||
<!-- </button> --> | ||
|
||
<button | ||
class="{actionBackgroundColor} w-full p-1 rounded border-2 border-outline_gray text-text_white" | ||
onclick={deleteself} | ||
> | ||
{action.type} | ||
</button> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
<script> | ||
let { children } = $props(); | ||
import "../app.css"; | ||
import '../app.css'; | ||
</script> | ||
|
||
{@render children()} | ||
|
||
<style lang="postcss"> | ||
:global(body) { | ||
@apply bg-bg_gray; | ||
@apply bg-bg_gray; | ||
@apply font-mono; | ||
touch-action: manipulation; | ||
} | ||
</style> | ||
|
||
{@render children()} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
<div class="flex flex-col items-center justify-evenly h-dvh"> | ||
<h1 class="text-center text-text_red text-5xl font-bold"> | ||
hiiii :3 | ||
</h1> | ||
<a class="text-center text-text_yellow text-2xl rounded bg-btn_grey px-4 py-2 font-bold border-solid border-2 border-text_red" href="/scout"> | ||
scout | ||
</a> | ||
<div class="flex flex-col items-center justify-evenly h-dvh text-text_white"> | ||
<h1 class="text-center text-5xl font-bold">hiiii :3</h1> | ||
<a class="text-center text-2xl rounded bg-btn_grey px-4 py-2 font-bold" href="/scout"> | ||
scout | ||
</a> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
/** @type {import('tailwindcss').Config} */ | ||
export default { | ||
content: ['./src/**/*.{html,js,svelte,ts}'], | ||
theme: { | ||
colors: { | ||
"navbar_black": "#1c1c1c", | ||
"outline_gray": "#ec4899", | ||
"cresc_green": "#49A078", | ||
"bg_gray": "#020617", | ||
"slack_purple": "#4A154B", | ||
"robot_blue": "#0083E6", | ||
"robot_red": "#ED1C24", | ||
"fail_red": "#FF6663", | ||
"btn_grey": "#0f172a", | ||
"text_red": "#FF4848", | ||
"text_yellow": "#F6B14B", | ||
}, | ||
extend: {}, | ||
}, | ||
plugins: [], | ||
} | ||
content: ['./src/**/*.{html,js,svelte,ts}'], | ||
theme: { | ||
colors: { | ||
navbar_black: '#1c1c1c', | ||
outline_gray: '#ec4899', | ||
cresc_green: '#49A078', | ||
bg_gray: '#020617', | ||
slack_purple: '#4A154B', | ||
robot_blue: '#0083E6', | ||
robot_red: '#ED1C24', | ||
fail_red: '#FF6663', | ||
btn_grey: '#0f172a', | ||
text_red: '#FF4848', | ||
text_yellow: '#F6B14B' | ||
}, | ||
extend: {} | ||
}, | ||
plugins: [] | ||
}; |