diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..97c17c2 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,6 @@ +{ + "tailwindCSS.includeLanguages": { + "phoenix-heex": "html", + "elixir": "html" + } +} diff --git a/assets/css/app.css b/assets/css/app.css index 3b86da7..c2c70b2 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -106,3 +106,9 @@ } /* This file is for your main application CSS */ + +@layer components { + .button { + @apply bg-blue-500 text-white px-3 py-1 rounded-full; + } +} diff --git a/lib/statusphere_web/components/layouts.ex b/lib/statusphere_web/components/layouts.ex index 1ea30d3..f845f23 100644 --- a/lib/statusphere_web/components/layouts.ex +++ b/lib/statusphere_web/components/layouts.ex @@ -35,37 +35,13 @@ defmodule StatusphereWeb.Layouts do def app(assigns) do ~H""" -