diff --git a/www/form/app-form.less b/www/form/app-form.less index f7172d55f..fd986e754 100644 --- a/www/form/app-form.less +++ b/www/form/app-form.less @@ -218,7 +218,9 @@ .cp-form-view-footer-text { text-align: center; svg.cp-form-footer-icon { - margin: 0 0 0.2rem 0.2rem; + margin: 0 0.3rem 0.1rem 0; + width: 1em; + vertical-align: text-bottom; color: @cryptpad_color_brand; } a { diff --git a/www/form/inner.js b/www/form/inner.js index 2f3690dd7..96b991db5 100644 --- a/www/form/inner.js +++ b/www/form/inner.js @@ -3347,7 +3347,7 @@ define([ APP.framework._.sfCommon.gotoURL('/'); }); var content = UI.setHTML(h('div.cp-form-block.cp-form-view-footer-text'), Messages.form_footerInfo); - content.appendChild(Icons.get('form', { 'class': 'cp-form-footer-icon', 'aria-hidden': true })); + content.insertBefore(Icons.get('lock', {'class': 'cp-form-footer-icon', 'aria-hidden': true}), content.firstChild); var footer = h('div.cp-form-view-footer', [content, logo]); return footer; };