Skip to content

Commit ff7cd63

Browse files
committed
minor symfony#16892 [2.8] Use correct height for toolbar clearer (WouterJ)
This PR was merged into the 2.8 branch. Discussion ---------- [2.8] Use correct height for toolbar clearer The toolbar is 36px heigh, while the clearer is set at 38px. This means that there is 2px between the end of the page and the toolbar. This is especially not nice when the footer has a dark color (it renders a 2px white line between toolbar and footer). | Q | A | ------------- | --- | Fixed tickets | - | License | MIT Commits ------- 1a9c0bc Use correct height for clearer
2 parents 5529dfc + 1a9c0bc commit ff7cd63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/toolbar.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<style>
2222
{{ include('@WebProfiler/Profiler/toolbar.css.twig', { 'position': position, 'floatable': true }) }}
2323
</style>
24-
<div id="sfToolbarClearer-{{ token }}" style="clear: both; height: 38px;"></div>
24+
<div id="sfToolbarClearer-{{ token }}" style="clear: both; height: 36px;"></div>
2525
{% endif %}
2626

2727
<div id="sfToolbarMainContent-{{ token }}" class="sf-toolbarreset clear-fix" data-no-turbolink>

0 commit comments

Comments
 (0)