From 6669187f254b76e4495ac12a3a7bb5b433c77808 Mon Sep 17 00:00:00 2001 From: Harshad Sharma Date: Mon, 13 May 2024 15:55:04 +0530 Subject: [PATCH] Fix warnings about bulma attributes --- lib/freedive_web.ex | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/freedive_web.ex b/lib/freedive_web.ex index 6c65b63..c6c5928 100644 --- a/lib/freedive_web.ex +++ b/lib/freedive_web.ex @@ -52,7 +52,8 @@ defmodule FreediveWeb do def live_view do quote do use Phoenix.LiveView, - layout: {FreediveWeb.Layouts, :app} + layout: {FreediveWeb.Layouts, :app}, + global_prefixes: ["is-", "has-", "flex-", "justify-", "align-"] unquote(html_helpers()) end