live_svelte/example_project/assets/css/app.css
Denis Donici 553ea1e466
Upgrade example project. fix remounting Svelte component (#206)
* remove old link in example page. add real time for ecto example

* upgraded tailwind 4 and latest phoenix for example

* fixed svelte component remounting on server events

* generate auto ids for duplicate components

* handle static svelte components in live view parent properly

* prepare release 0.17.3 release

* adjust the live_svelte version in mix.exs
2026-02-08 13:47:39 +02:00

23 lines
741 B
CSS

@import "tailwindcss";
/* Source directives — paths relative to this CSS file */
@source "../../lib/example_web/**/*.{ex,heex}";
@source "../svelte/**/*.svelte";
@source "../js/**/*.js";
/* Phoenix LiveView custom variants */
@custom-variant phx-no-feedback (&:where(.phx-no-feedback, .phx-no-feedback *));
@custom-variant phx-click-loading (&:where(.phx-click-loading, .phx-click-loading *));
@custom-variant phx-submit-loading (&:where(.phx-submit-loading, .phx-submit-loading *));
@custom-variant phx-change-loading (&:where(.phx-change-loading, .phx-change-loading *));
/* Custom brand color */
@theme {
--color-brand: #FD4F00;
}
/* DaisyUI plugin */
@plugin "daisyui";
/* Hero icons plugin */
@plugin "./hero-icons-plugin.js";