From 98d1adc0de476348d53dec6462b4f13108155009 Mon Sep 17 00:00:00 2001 From: sh20raj Date: Wed, 24 Jul 2024 09:23:03 +0530 Subject: [PATCH] Refactor CSS file names and update HTML references --- index.html | 2 +- service-worker.js | 2 +- styles.css => style.css | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename styles.css => style.css (100%) diff --git a/index.html b/index.html index 74f6d45..1bcae0f 100755 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ Daily To-Do App - +
diff --git a/service-worker.js b/service-worker.js index c445f95..1b05344 100644 --- a/service-worker.js +++ b/service-worker.js @@ -2,7 +2,7 @@ const cacheName = 'todo-cache-v1'; const filesToCache = [ '/', '/index.html', - '/styles.css', + '/style.css', '/script.js', ]; diff --git a/styles.css b/style.css similarity index 100% rename from styles.css rename to style.css