Skip to content

Commit a3a1d2a

Browse files
authored
fix: content section padding top too big (#145)
1 parent 4548c8a commit a3a1d2a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/views/layouts/avo/application.html.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</div>
3030
</div>
3131

32-
<div class="content p-8 pt-20">
32+
<div class="content p-8">
3333
<%= yield %>
3434
<%= render_footer %>
3535
</div>

lib/avo/configuration.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Configuration
1414

1515
def initialize
1616
@root_path = '/avo'
17-
@app_name = Rails.application.class.to_s.split("::").first
17+
@app_name = Rails.application.class.to_s.split('::').first
1818
@timezone = 'UTC'
1919
@per_page = 24
2020
@per_page_steps = [12, 24, 48, 72]

0 commit comments

Comments
 (0)