Skip to content

Commit

Permalink
smaller fonts on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
yshmarov committed Dec 16, 2024
1 parent 2c176c6 commit 1a8ddb0
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion app/components/page_component.html.erb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<section class="space-y-8 mx-auto <%= width_class %>">
<div class="flex justify-between items-center">
<h1 class="font-bold text-4xl">
<h1 class="font-bold text-lx lg:text-3xl">
<%= title %>
</h1>
<div class="whitespace-nowrap">
Expand Down
2 changes: 1 addition & 1 deletion app/views/organizations/inboxes/edit.html.erb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="mx-auto md:w-2/3 w-full">
<h1 class="font-bold text-4xl">Editing inbox</h1>
<h1 class="font-bold text-lx lg:text-3xll">Editing inbox</h1>

<%= render "form", inbox: @inbox %>

Expand Down
2 changes: 1 addition & 1 deletion app/views/organizations/inboxes/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<% content_for :title, "Inboxes" %>

<div class="flex justify-between items-center">
<h1 class="font-bold text-4xl">Inboxes</h1>
<h1 class="font-bold text-lx lg:text-3xll">Inboxes</h1>
<%= link_to "New inbox", new_organization_inbox_path(@organization), class: "rounded-lg py-3 px-5 bg-blue-600 text-white block font-medium" %>
</div>

Expand Down
2 changes: 1 addition & 1 deletion app/views/organizations/inboxes/new.html.erb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="mx-auto md:w-2/3 w-full">
<h1 class="font-bold text-4xl">New inbox</h1>
<h1 class="font-bold text-lx lg:text-3xll">New inbox</h1>

<%= render "form", inbox: @inbox %>

Expand Down
2 changes: 1 addition & 1 deletion app/views/static/index.html.erb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div>
<h1 class="font-bold text-4xl">Static#index</h1>
<h1 class="font-bold text-lx lg:text-3xll">Static#index</h1>
<p>Find me in app/views/static/index.html.erb</p>
</div>
2 changes: 1 addition & 1 deletion app/views/static/pricing.html.erb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div>
<h1 class="font-bold text-4xl">Static#pricing</h1>
<h1 class="font-bold text-lx lg:text-3xll">Static#pricing</h1>
<p>Find me in app/views/static/pricing.html.erb</p>
</div>
2 changes: 1 addition & 1 deletion app/views/static/privacy.html.erb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div>
<h1 class="font-bold text-4xl">Static#privacy</h1>
<h1 class="font-bold text-lx lg:text-3xll">Static#privacy</h1>
<p>Find me in app/views/static/privacy.html.erb</p>
</div>
2 changes: 1 addition & 1 deletion app/views/static/terms.html.erb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div>
<h1 class="font-bold text-4xl">Static#terms</h1>
<h1 class="font-bold text-lx lg:text-3xll">Static#terms</h1>
<p>Find me in app/views/static/terms.html.erb</p>
</div>

0 comments on commit 1a8ddb0

Please sign in to comment.