Skip to content

Commit 4efbddf

Browse files
authored
fix: improve text size (#45)
1 parent 92918ef commit 4efbddf

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

lib/gallium_web/components/core_components.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ defmodule GalliumWeb.CoreComponents do
313313
class={[
314314
if(@icon != [], do: "pl-10", else: "pl-2"),
315315
@class ||
316-
"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",
316+
"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",
317317
if(@errors != [], do: "border-red-500", else: "border-gray-300"),
318318
@errors != [] && (@error_class || "input-error")
319319
]}

lib/gallium_web/live/user_live/login.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ defmodule GalliumWeb.UserLive.Login do
1111
<div class="mx-auto w-full max-w-sm my-8 space-y-4 flex flex-1 flex-col justify-center">
1212
<div class="text-center font-cormorant">
1313
<.header>
14-
<p class="text-3xl">Log in</p>
14+
<p class="text-5xl">Log in</p>
1515
<:subtitle>
1616
<%= if @current_scope do %>
1717
Precisas de te reautenticar para fazer ações sensíveis

lib/gallium_web/live/user_live/registration.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ defmodule GalliumWeb.UserLive.Registration do
1212
<div class="mx-auto w-full max-w-sm my-8 space-y-4 flex flex-1 flex-col justify-center">
1313
<div class="text-center font-cormorant">
1414
<.header>
15-
<div class="text-3xl">
15+
<div class="text-5xl">
1616
Regista a tua conta
1717
</div>
1818
<:subtitle>

0 commit comments

Comments
 (0)