fix monorepo package.json & tailwind
Fixes to package naming, sveltekit version mixups, local import extensions, tailwind app.css imports, tailwind references.
This commit is contained in:
@@ -30,11 +30,11 @@
|
|||||||
},
|
},
|
||||||
".": {
|
".": {
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
"svelte": "./dist/index.js"
|
"svelte": "./dist/index.ts"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@sveltejs/kit": "^2.16.0",
|
"@sveltejs/kit": "^2.20.2",
|
||||||
"svelte": "^5.25.3"
|
"svelte": "^5.25.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|||||||
@@ -1,2 +1 @@
|
|||||||
@import 'tailwindcss';
|
@import '@repo/tailwindcss-config/app.css';
|
||||||
@plugin '@tailwindcss/forms';
|
|
||||||
|
|||||||
@@ -458,7 +458,7 @@
|
|||||||
{/snippet}
|
{/snippet}
|
||||||
|
|
||||||
<style lang="postcss">
|
<style lang="postcss">
|
||||||
@reference "@repo/tailwindcss-config/app.css";
|
@reference "../app.css";
|
||||||
|
|
||||||
.picker {
|
.picker {
|
||||||
--outer-gap: 0.5rem;
|
--outer-gap: 0.5rem;
|
||||||
|
|||||||
@@ -435,7 +435,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<style lang="postcss">
|
<style lang="postcss">
|
||||||
@reference "@repo/tailwindcss-config/app.css";
|
@reference "../app.css";
|
||||||
|
|
||||||
:global(.circle-initial) {
|
:global(.circle-initial) {
|
||||||
transition: opacity 1s;
|
transition: opacity 1s;
|
||||||
|
|||||||
@@ -355,7 +355,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<style lang="postcss">
|
<style lang="postcss">
|
||||||
@reference "@repo/tailwindcss-config/app.css";
|
@reference "../app.css";
|
||||||
|
|
||||||
:global(.time-input) {
|
:global(.time-input) {
|
||||||
@apply h-16 w-24 text-center text-xl;
|
@apply h-16 w-24 text-center text-xl;
|
||||||
@@ -375,7 +375,7 @@
|
|||||||
@apply border-accent dark:border-accent/50 cursor-pointer px-3 py-1 font-medium;
|
@apply border-accent dark:border-accent/50 cursor-pointer px-3 py-1 font-medium;
|
||||||
|
|
||||||
&.selected {
|
&.selected {
|
||||||
@apply bg-accent text-background dark:bg-accent/30 dark:text-background/90 ring-1 ring-black dark:ring-blue-300;
|
@apply bg-accent text-background dark:bg-accent/30 dark:text-background/90 ring-text ring-1 dark:ring-blue-300;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user