File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ header.wrapper {
214214 display : block;
215215 background : none;
216216 border : none;
217- font-size : 1.5 rem ;
217+ font-size : 2 rem ;
218218 cursor : pointer;
219219 padding : 0.5rem ;
220220 }
@@ -231,15 +231,15 @@ header.wrapper {
231231 max-height 0.3s ease-out,
232232 opacity 0.15s ease-out;
233233 margin-top : var (--hot-spacing-small );
234- gap : 0 ;
234+ gap : var ( --hot-spacing-small ) ;
235235 }
236236 .nav-links .open {
237237 max-height : 600px ;
238238 opacity : 1 ;
239239 transition :
240240 max-height 0.4s ease-in,
241241 opacity 0.2s ease-in;
242- gap : 0 ;
242+ gap : var ( --hot-spacing-small ) ;
243243 box-shadow : 0px 4px 8px rgba (0 , 0 , 0 , 0.1 );
244244 }
245245 .hotosm-auth-desktop {
Original file line number Diff line number Diff line change 77 </ section >
88
99 < section >
10- < button class ="nav-hamburger " aria-label ="Menu " onclick ="this.closest('nav').querySelector('.nav-links').classList.toggle('open') "> ☰</ button >
10+ < button class ="nav-hamburger " aria-label ="Menu " onclick ="this.closest('nav').querySelector('.nav-links').classList.toggle('open'); this.textContent = this.textContent.trim() === '✕' ? '☰' : '✕' "> ☰</ button >
1111 < ul class ="nav-links ">
1212 {% if AUTH_PROVIDER != 'hanko' %}
1313 {% if user.is_authenticated %}< li > < a href ="{% url 'user_dashboard' %} "> {% trans "My Dashboard" %} ({{ user }})</ a > </ li > < li > < a href ="{{ user.get_stars_url }} "> {% trans "Starred maps" %}</ a > </ li > {% else %}< li > < a href ="{% url 'login' %} " class ="login "> {% trans "Log in" %} / {% trans "Sign in" %}</ a > </ li > {% endif %}
You can’t perform that action at this time.
0 commit comments