Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiple fixes #167

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
18 changes: 7 additions & 11 deletions app/assets/images/twitter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions app/views/schedules/show.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<%= render partial: 'sessions/filters', locals: { resource: :schedule } %>
</div>

<div class="flex flex-col w-full h-full mb-[12rem]">
<div class="flex flex-col w-full h-full mb-[50vh]">
<% if @sessions.present? %>
<% previous_date = nil %>
<% @sessions.group_by(&:starts_at).each do |starts_at, sessions| %>
Expand Down Expand Up @@ -44,7 +44,7 @@
locals: {
session: session,
user_is_an_attendee: true,
id_prefix: "schedule",
id_prefix: "schedule"
}
) %>
<% end %>
Expand Down
2 changes: 1 addition & 1 deletion app/views/sessions/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<%= render partial: 'sessions/filters', locals: { resource: :sessions } %>
</div>

<div class="flex flex-col w-full h-full mb-[12rem]">
<div class="flex flex-col w-full h-full mb-[50vh]">
<% if @sessions.present? %>
<% previous_date = nil %>
<% @sessions.group_by(&:starts_at).each do |starts_at, sessions| %>
Expand Down