Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/gallium_web/components/core_components.ex
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ defmodule GalliumWeb.CoreComponents do
class={[
if(@icon != [], do: "pl-10", else: "pl-2"),
@class ||
"focus:outline-none focus:ring-0 w-full rounded-field border font-cormorant py-2 pr-2 placeholder:text-gray-400 text-gray-800 bg-white transition-colors duration-200",
"text-xl focus:outline-none focus:ring-0 w-full rounded-field border font-cormorant py-2 pr-2 placeholder:text-gray-400 text-gray-800 bg-white transition-colors duration-200",
if(@errors != [], do: "border-red-500", else: "border-gray-300"),
@errors != [] && (@error_class || "input-error")
]}
Expand Down
2 changes: 1 addition & 1 deletion lib/gallium_web/live/user_live/login.ex
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ defmodule GalliumWeb.UserLive.Login do
<div class="mx-auto w-full max-w-sm my-8 space-y-4 flex flex-1 flex-col justify-center">
<div class="text-center font-cormorant">
<.header>
<p class="text-3xl">Log in</p>
<p class="text-5xl">Log in</p>
<:subtitle>
<%= if @current_scope do %>
Precisas de te reautenticar para fazer ações sensíveis
Expand Down
2 changes: 1 addition & 1 deletion lib/gallium_web/live/user_live/registration.ex
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ defmodule GalliumWeb.UserLive.Registration do
<div class="mx-auto w-full max-w-sm my-8 space-y-4 flex flex-1 flex-col justify-center">
<div class="text-center font-cormorant">
<.header>
<div class="text-3xl">
<div class="text-5xl">
Regista a tua conta
</div>
<:subtitle>
Expand Down
Loading