Brighter BG, removed the error

This commit is contained in:
mikwee 2021-11-23 13:33:58 +02:00
parent 2839cc08a0
commit 1e47556e62
2 changed files with 2 additions and 5 deletions

View File

@ -1,8 +1,8 @@
.App { .App {
background: background:
linear-gradient( linear-gradient(
rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5),
rgba(0, 0, 0, 0.6) rgba(0, 0, 0, 0.5)
), ),
url('background.png'); url('background.png');
position: fixed; position: fixed;

View File

@ -45,9 +45,6 @@ function App() {
else if (rootDetail.type === "basic") { else if (rootDetail.type === "basic") {
res = <Button className="roots" variant="primary" href={rootDetail.url}>{rootDetail.text}</Button> res = <Button className="roots" variant="primary" href={rootDetail.url}>{rootDetail.text}</Button>
} }
else {
// throw "One of your roots has an unrecognized type. Check out the documentation for the supported types.";
}
return res; return res;
})} })}
</div> </div>