diff options
-rw-r--r-- | .vscode/launch.json | 5 | ||||
-rw-r--r-- | templates/styles.css | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 9149f75..74bf340 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -18,7 +18,10 @@ }, "args": [], "cwd": "${workspaceFolder}", - "preLaunchTask": "rust: cargo build" + "preLaunchTask": "rust: cargo build", + "env": { + "CT_BIND": "0.0.0.0:8001" + } }, { "type": "lldb", diff --git a/templates/styles.css b/templates/styles.css index 609a0f7..babfed5 100644 --- a/templates/styles.css +++ b/templates/styles.css @@ -23,6 +23,7 @@ body { body { background-image: url("/assets/bg.webp"); + background-size: 50%; } nav { |