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",
|
||||
"svelte": "./dist/index.js"
|
||||
"svelte": "./dist/index.ts"
|
||||
}
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@sveltejs/kit": "^2.16.0",
|
||||
"@sveltejs/kit": "^2.20.2",
|
||||
"svelte": "^5.25.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
||||
@@ -1,2 +1 @@
|
||||
@import 'tailwindcss';
|
||||
@plugin '@tailwindcss/forms';
|
||||
@import '@repo/tailwindcss-config/app.css';
|
||||
|
||||
@@ -458,7 +458,7 @@
|
||||
{/snippet}
|
||||
|
||||
<style lang="postcss">
|
||||
@reference "@repo/tailwindcss-config/app.css";
|
||||
@reference "../app.css";
|
||||
|
||||
.picker {
|
||||
--outer-gap: 0.5rem;
|
||||
|
||||
@@ -435,7 +435,7 @@
|
||||
</div>
|
||||
|
||||
<style lang="postcss">
|
||||
@reference "@repo/tailwindcss-config/app.css";
|
||||
@reference "../app.css";
|
||||
|
||||
:global(.circle-initial) {
|
||||
transition: opacity 1s;
|
||||
|
||||
@@ -355,7 +355,7 @@
|
||||
</div>
|
||||
|
||||
<style lang="postcss">
|
||||
@reference "@repo/tailwindcss-config/app.css";
|
||||
@reference "../app.css";
|
||||
|
||||
:global(.time-input) {
|
||||
@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;
|
||||
|
||||
&.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>
|
||||
|
||||
Reference in New Issue
Block a user