mirror of
https://github.com/woutdp/live_svelte
synced 2026-05-24 09:28:21 +00:00
* 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
23 lines
741 B
CSS
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";
|