Skip to content

Commit

Permalink
fix: content section padding top too big (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianthedev authored Oct 10, 2020
1 parent 4548c8a commit a3a1d2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/views/layouts/avo/application.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</div>
</div>

<div class="content p-8 pt-20">
<div class="content p-8">
<%= yield %>
<%= render_footer %>
</div>
Expand Down
2 changes: 1 addition & 1 deletion lib/avo/configuration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Configuration

def initialize
@root_path = '/avo'
@app_name = Rails.application.class.to_s.split("::").first
@app_name = Rails.application.class.to_s.split('::').first
@timezone = 'UTC'
@per_page = 24
@per_page_steps = [12, 24, 48, 72]
Expand Down

0 comments on commit a3a1d2a

Please sign in to comment.