Projet

Général

Profil

0001-theme-use-.clearfix-class-on-footer-element-48766.patch

Thomas Jund, 23 novembre 2020 18:13

Télécharger (1,21 ko)

Voir les différences:

Subject: [PATCH] theme: use .clearfix class on #footer element (#48766)

 static/includes/_layout.scss | 8 --------
 templates/theme.html         | 2 +-
 2 files changed, 1 insertion(+), 9 deletions(-)
static/includes/_layout.scss
154 154
	color: $footer-color;
155 155
}
156 156

  
157
#footer {
158
	&::after {
159
		content: '';
160
		display: block;
161
		clear: both;
162
	}
163
}
164

  
165 157
@if $footer-full-width-background {
166 158
	#footer-wrapper {
167 159
		padding: 0.7em 0 1.5em 0;
templates/theme.html
143 143
   <footer role="contentinfo">
144 144
    {% block footer-pre %}{% endblock %}
145 145
    <div id="footer-wrapper">
146
    <div id="footer">
146
    <div id="footer" class="clearfix">
147 147
      {% block footer-top %}{% endblock %}
148 148
      {% block footer %}
149 149
      <p id="legal">Copyright © 2005-2016 Entr'ouvert</p>
150
-