aboutsummaryrefslogtreecommitdiff
path: root/docker/crupest-nginx/sites/www/src
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2022-11-27 15:53:02 +0800
committercrupest <crupest@outlook.com>2022-11-27 15:53:02 +0800
commit4fa1f65c5d099971e94f7f5af4c710fe297d9285 (patch)
tree3de0178b97b26904126056f1010a202fda7a4124 /docker/crupest-nginx/sites/www/src
parent2dfc42b9bee216ce966fb1b74d3d7d21e0dcbd81 (diff)
downloadcrupest-4fa1f65c5d099971e94f7f5af4c710fe297d9285.tar.gz
crupest-4fa1f65c5d099971e94f7f5af4c710fe297d9285.tar.bz2
crupest-4fa1f65c5d099971e94f7f5af4c710fe297d9285.zip
Enhance nginx config and www page.
Diffstat (limited to 'docker/crupest-nginx/sites/www/src')
-rw-r--r--docker/crupest-nginx/sites/www/src/main.js2
-rw-r--r--docker/crupest-nginx/sites/www/src/style.css8
2 files changed, 8 insertions, 2 deletions
diff --git a/docker/crupest-nginx/sites/www/src/main.js b/docker/crupest-nginx/sites/www/src/main.js
index 111b0bd..13a85c3 100644
--- a/docker/crupest-nginx/sites/www/src/main.js
+++ b/docker/crupest-nginx/sites/www/src/main.js
@@ -21,7 +21,7 @@ document.addEventListener("DOMContentLoaded", async () => {
const todoContainer = document.getElementById("todo-container");
const res = await fetch("/api/todos");
- const body = res.json();
+ const body = await res.json();
if (res.status !== 200) {
todoMessage.style.color = "red";
diff --git a/docker/crupest-nginx/sites/www/src/style.css b/docker/crupest-nginx/sites/www/src/style.css
index 6021c6c..b632745 100644
--- a/docker/crupest-nginx/sites/www/src/style.css
+++ b/docker/crupest-nginx/sites/www/src/style.css
@@ -5,7 +5,13 @@ html {
body {
width: 100%;
margin: 0;
- padding: 0 2em;
+ box-sizing: border-box;
+}
+
+@media (min-width: 576px) {
+ #main-article {
+ padding: 0 2em;
+ }
}
#color-strip-container {