Skip to content

Commit

Permalink
Merge pull request #226 from ImreBoersma/master
Browse files Browse the repository at this point in the history
Dark mode updates
  • Loading branch information
jochemvogel authored Mar 28, 2024
2 parents 725cf6b + 1233f95 commit 526db78
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
2 changes: 2 additions & 0 deletions src/routes/machine-learning/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,8 @@
img {
width: 85vw;
max-width: 40rem;
border-radius: 8px;
border: 5px solid white;
}
figure {
Expand Down
10 changes: 8 additions & 2 deletions src/routes/methods-overview/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,17 @@
color: white;
padding: 5px;
padding: 0;
border: 1px solid var(--color-white);
}
.item {
padding: 5px;
border: 1px solid white;
border-top: 1px solid var(--color-white);
border-bottom: 1px solid var(--color-white);
padding: 5px;
&:first-child {
border-top: 2px solid var(--color-white);
}
}
a {
Expand Down
10 changes: 8 additions & 2 deletions src/routes/methods-per-project-phase/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,17 @@
color: white;
padding: 5px;
padding: 0;
border: 1px solid var(--color-white);
}
.item {
padding: 5px;
border: 1px solid white;
border-top: 1px solid var(--color-white);
border-bottom: 1px solid var(--color-white);
padding: 5px;
&:first-child {
border-top: 2px solid var(--color-white);
}
}
a {
Expand Down

0 comments on commit 526db78

Please sign in to comment.