Skip to content

Commit

Permalink
Run formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
tiago-bacelar committed Jun 5, 2023
1 parent 11b7386 commit 6e73dad
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions lib/parzival_web/live/landing/home_live/index.html.heex
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,14 @@
end %>
</p>
<%= if activity["location"] do %>
<p class="absolute left-3 w-32 font-bold text-md top-[88px]">
<%= if String.length(activity["location"]) < 12 do
activity["location"]
else
String.slice(activity["location"], 0..10) <> "... "
end %>
</p>
<% end %>
<p class="absolute left-3 w-32 font-bold text-md top-[88px]">
<%= if String.length(activity["location"]) < 12 do
activity["location"]
else
String.slice(activity["location"], 0..10) <> "... "
end %>
</p>
<% end %>
<p class="absolute left-3 w-32 font-bold text-md top-[105px]">
<%= Calendar.strftime(activity["hours"], "%Hh%M") %>
</p>
Expand Down Expand Up @@ -183,7 +183,7 @@
else
'font-thin text-[12px] md:text-[16px] opacity-70'
end} text-white"}>
<div class="flex flex-col w-40 text-right font-semibold text-right opacity-100 sm:w-96 md:w-[420px]">
<div class="flex flex-col w-40 font-semibold text-right opacity-100 sm:w-96 md:w-[420px]">
<span class="text-red-100 opacity-100">
<%= activity["title"] %>
</span>
Expand All @@ -194,7 +194,7 @@
<% end %>
<%= if activity["speaker"] && activity["hours"] == next_activity do %>
<span class="text-sm font-thin">
By <%= activity["speaker"] %>
By <%= activity["speaker"] %>
</span>
<% end %>
<%= if activity["company"] && activity["hours"] == next_activity do %>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@
<span class="text-sm">
<%= activity["location"] %>
</span>
<% end %>
<% end %>
</div>
<span class="font-normal text-center w-[60px] md:w-[70px]">
<%= Calendar.strftime(activity["hours"], "%Hh%M") %>
Expand Down

0 comments on commit 6e73dad

Please sign in to comment.