Update color vars in Svelte components - BUT NOT PAGES

This commit is contained in:
Fred Boniface
2023-10-06 12:31:17 +01:00
parent e2cefdda08
commit 72495a63be
15 changed files with 46 additions and 50 deletions

View File

@@ -58,17 +58,17 @@
margin: auto;
margin-top: 25px;
padding: 10px;
background-color: grey;
background-color: var(--overlay-island-color);
border-radius: 10px;
z-index: 2500;
box-shadow: 1px 1px 3px rgba(0,0,0,0.19);
box-shadow: 1px 1px 3px var(--box-shadow-color);
}
.navButton {
border-radius: 50px;
border: none;
color: white;
background-color: var(--overlay-color);
color: var(--island-link-color);
background-color: var(--overlay-island-bg-color);
width: 50px;
height: 50px;
font-size: 20px;
@@ -96,6 +96,6 @@
}
div {
color: white;
color: var(--island-text-color);
}
</style>