diff options
author | Thomas Lange <code@nerdmind.de> | 2021-07-05 01:43:18 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-07-05 01:43:18 +0200 |
commit | cb6e45b130bde70458ee544069834a951214037d (patch) | |
tree | 47323057dd74b995ae0cb908cdf760e3d6904ad6 /theme/admin/html/database.php | |
parent | 7f1223c36bf1ebfd6c22265ed9aec630e5a054bb (diff) | |
download | blog-cb6e45b130bde70458ee544069834a951214037d.tar.gz blog-cb6e45b130bde70458ee544069834a951214037d.tar.xz blog-cb6e45b130bde70458ee544069834a951214037d.zip |
Add SCSS variables and do some minor optimizations
This commit adds and uses variables for the SCSS files. Additionally,
some minor optimizations have been done on the theme's HTML/CSS code.
Diffstat (limited to 'theme/admin/html/database.php')
-rw-r--r-- | theme/admin/html/database.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theme/admin/html/database.php b/theme/admin/html/database.php index da41e68..cdc9b31 100644 --- a/theme/admin/html/database.php +++ b/theme/admin/html/database.php @@ -21,7 +21,7 @@ <?php if($FORM['RESULT']): ?> <div class="form-border-box background padding"> - <pre id="database-result"><?=escapeHTML($FORM['RESULT'])?></pre> + <pre><?=escapeHTML($FORM['RESULT'])?></pre> </div> <?php endif; ?> |