We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c88d4a commit d9f84c7Copy full SHA for d9f84c7
.nginx/script.js
@@ -1,6 +1,7 @@
1
-{
+(() => {
2
+ const prefix = '/.nginx';
3
+
4
async function addIcons() {
- const prefix = '/.nginx';
5
const iconMap = await fetch(`${prefix}/icons.json`).then(response => response.json());
6
const defaultIcon = iconMap[''];
7
@@ -36,4 +37,4 @@
36
37
document.addEventListener('DOMContentLoaded', () => {
38
addIcons();
39
});
-}
40
+})();
.nginx/style.css
@@ -48,7 +48,7 @@ footer {
48
}
49
50
#page {
51
- overflow: hidden;
+ overflow: hidden;
52
background-color: #fff;
53
border-radius: .3rem;
54
box-shadow: 0px 0px .2rem #ccc;
@@ -121,6 +121,6 @@ footer {
121
122
123
footer {
124
- padding: .8rem;
+ padding: 1rem .8rem;
125
126
0 commit comments