-
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.
- Loading branch information
1 parent
46304ba
commit e25578c
Showing
12 changed files
with
5,771 additions
and
14,718 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"_variables": { | ||
"lastUpdateCheck": 1733513283182 | ||
"lastUpdateCheck": 1739477208795 | ||
} | ||
} |
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,15 @@ | ||
import { defineConfig } from 'astro/config'; | ||
import tailwind from '@astrojs/tailwind'; | ||
|
||
import solidJs from "@astrojs/solid-js"; | ||
import tailwindcss from "@tailwindcss/vite"; | ||
|
||
// https://astro.build/config | ||
export default defineConfig({ | ||
integrations: [solidJs(), tailwind()], | ||
integrations: [solidJs()], | ||
build: { | ||
assets: "astro" | ||
}, | ||
vite: { | ||
plugins: [tailwindcss()] | ||
} | ||
}); |
Large diffs are not rendered by default.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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
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
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,44 @@ | ||
@import 'tailwindcss'; | ||
@plugin "@tailwindcss/typography"; | ||
|
||
|
||
@theme { | ||
--breakpoint-xs: 340px; | ||
--color-cool-50: #fcfcfc; | ||
--color-cool-100: #eeeeee; | ||
--color-cool-200: #a1a1a1; | ||
} | ||
|
||
/* | ||
The default border color has changed to `currentColor` in Tailwind CSS v4, | ||
so we've added these compatibility styles to make sure everything still | ||
looks the same as it did with Tailwind CSS v3. | ||
If we ever want to remove these styles, we need to add an explicit border | ||
color utility to any element that depends on these defaults. | ||
*/ | ||
@layer base { | ||
*, | ||
::after, | ||
::before, | ||
::backdrop, | ||
::file-selector-button { | ||
border-color: var(--color-gray-200, currentColor); | ||
} | ||
} | ||
|
||
*::-webkit-scrollbar { | ||
@apply h-[10px] w-[10px] rounded-full; | ||
background: #fcfcfc; | ||
} | ||
|
||
/* Handle */ | ||
*::-webkit-scrollbar-thumb { | ||
@apply w-[10px] h-[10px] rounded-full; | ||
background: #c4c4c4; | ||
} | ||
|
||
/* Handle on hover */ | ||
*::-webkit-scrollbar-thumb:hover { | ||
background: #a2a2a2; | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.