remove styling

Co-authored-by: Petter Sæterøy <potetmos1@users.noreply.github.com>
This commit is contained in:
2025-07-02 23:32:13 +02:00
parent e391330a7f
commit 9bfdfcbae6

View File

@ -7,22 +7,3 @@ import data from '../data/program.json';
<Layout lang="no"> <Layout lang="no">
<ProgramComponent lang="no" data={data} /> <ProgramComponent lang="no" data={data} />
</Layout> </Layout>
<style>
.day {
margin-bottom: 20px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
.day:nth-child(odd) {
background-color: #F8BC90;
}
.day:nth-child(even) {
background-color: #0A0F6D;
color: #fff; /* Optional: Adjust text color for better readability */
}
.item {
margin: 5px 0;
}
</style>