diff --git a/customize.dist/loading.js b/customize.dist/loading.js index 43d4738d4..8efca25fd 100644 --- a/customize.dist/loading.js +++ b/customize.dist/loading.js @@ -254,10 +254,6 @@ button:not(.btn).primary:hover{ background-color: rgb(52, 118, 162); } -nav { - text-align: right; -} - */}).toString().slice(14, -3); var urlArgs = window.location.href.replace(/^.*\?([^\?]*)$/, function (all, x) { return x; }); var elem = document.createElement('div'); diff --git a/www/common/common-ui-elements.js b/www/common/common-ui-elements.js index 8fcb9b194..93b9e3648 100644 --- a/www/common/common-ui-elements.js +++ b/www/common/common-ui-elements.js @@ -2552,7 +2552,9 @@ define([ var block = h('div#cp-loading-burn-after-reading', [ info, - h('nav', button), + h('nav', { + style: 'text-align: right' + }, button), ]); UI.errorLoadingScreen(block); };