Skip to content

Commit

Permalink
balance font sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
adrienpoly committed May 5, 2024
1 parent eaffc42 commit b8e1b54
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/assets/stylesheets/components/markdown.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
@apply leading-relaxed;
}
.markdown h1 {
@apply text-5xl text-primary text-center font-extralight mb-4;
@apply text-6xl text-primary text-center font-extralight mb-4;
}
.markdown h2 {
@apply text-3xl font-extralight mb-4;
@apply text-4xl font-extralight mb-4;
}
.markdown h3 {
@apply text-xl font-extralight mb-4;
Expand Down
2 changes: 1 addition & 1 deletion app/assets/stylesheets/components/typography.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}

h2 {
@apply text-5xl font-extralight font-heading;
@apply text-4xl font-extralight font-heading;
}

h3 {
Expand Down
1 change: 1 addition & 0 deletions app/views/talks/new.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

<div class="container pt-12 pb-20">
<h1 class="text-center mb-12 text-primary"><%= t('.title') %></h1>

<div class="flex flex-col gap-12 max-w-2xl mx-auto">
<div><%= t(".description_html", link: external_link_to("#orga", join_slack_url, class: "link inline-block")) %></div>
<%= render 'form', talk: @talk %>
Expand Down
2 changes: 1 addition & 1 deletion app/views/videos/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<% description t('.description') %>

<div class="container pt-12 pb-20">
<h1 class="text-center mb-8 text-primary"><%= t('.title') %></h1>
<h1 class="text-center mb-12 text-primary"><%= t('.title') %></h1>

<div class="my-8">
<%= render 'search_form' %>
Expand Down

0 comments on commit b8e1b54

Please sign in to comment.