diff options
author | akshaythakur8764 | 2024-12-23 10:10:51 +0530 |
---|---|---|
committer | akshaythakur8764 | 2024-12-23 10:10:51 +0530 |
commit | 958bcc382e187cf371d6313bf099f85c6671bede (patch) | |
tree | 29365f588a2f7fd3b4b50a4cc4725459a6d82691 | |
parent | e288338bc66050983210338a5c09c2c0c25c5638 (diff) | |
download | scilab_case_study_hackathon-958bcc382e187cf371d6313bf099f85c6671bede.tar.gz scilab_case_study_hackathon-958bcc382e187cf371d6313bf099f85c6671bede.tar.bz2 scilab_case_study_hackathon-958bcc382e187cf371d6313bf099f85c6671bede.zip |
list style change
-rw-r--r-- | src/components/HomeBody.astro | 4 | ||||
-rw-r--r-- | src/layouts/Layout.astro | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/components/HomeBody.astro b/src/components/HomeBody.astro index c0448dc..3c8c64d 100644 --- a/src/components/HomeBody.astro +++ b/src/components/HomeBody.astro @@ -337,7 +337,7 @@ import process from "../assets/img/process.png"; <h1 class="text-center section-title mx-4 px-4" id="rules">Rules and Regulations</h1> <div class="flex flex-col justify-center text-justify space-y-3 mt-4"> - <ol class="list-decimal"> + <ul class="list-disc"> <li>The decision of the review committee and organizers in declaring the results will be final. No queries in this regard will be entertained.</li> <li>The same person cannot participate twice.</li> <!-- <li>If a person is found participating in more than one team, both the teams will be disqualified from the Hackathon.</li> @@ -345,7 +345,7 @@ import process from "../assets/img/process.png"; <li>All submitted case studies will be made publicly available as open-source projects.</li> <li>Any participant found to be indulging in any form of malpractice will be immediately disqualified.</li> - </ol> + </ul> </div> </div> </div> diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 636f8bf..b03794b 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -20,7 +20,7 @@ const { title } = Astro.props; <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <link rel="icon" type="image/svg+xml" href="https://scilab.in/sites/default/files/favicon.png" /> + <link rel="icon" type="image/svg+xml" class="bg-red-500" href="https://scilab.in/sites/default/files/favicon.png" /> <script is:inline src="https://cdn.jsdelivr.net/npm/flowbite@2.5.2/dist/flowbite.min.js"></script> <meta name="generator" content={Astro.generator} /> <title>{title}</title> |