fix: various fixes

This commit is contained in:
alexsparkes
2022-09-07 16:04:06 +01:00
parent 2e6bf4c9c7
commit 0ab4c4b63d
5 changed files with 26 additions and 30 deletions

View File

@@ -2,8 +2,6 @@ export default function DateSkeleton() {
return (
<span className="date">
Thursday January 1st
<br />
Week 1
</span>
);
}

View File

@@ -217,26 +217,18 @@ a.privacy {
animation-timing-function: ease-in;*/
}
@keyframes float-in {
0% {
transform: translate(0, 30px);
opacity: 0;
}
100% {
transform: translate(0, 0px);
opacity: 1;
}
}
.light {
.toggle.lightTheme {
background-color: rgba(219, 219, 219, 0.72);
.welcomeContent {
.light {
.toggle.lightTheme {
background-color: rgba(219, 219, 219, 0.72);
}
}
}
.dark {
.toggle.darkTheme {
background-color: rgba(65, 71, 84, 0.9);
.dark {
.toggle.darkTheme {
background-color: rgba(65, 71, 84, 0.9);
}
}
}