1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-23 21:29:37 +02:00

Added redux. Moved theme loading/setting to redux actions. Added automatic theme loading based on localStorage value.

This commit is contained in:
unknown 2021-05-08 18:49:08 +02:00
parent 765418d3d2
commit 7199e296b8
14 changed files with 203 additions and 39 deletions

View file

@ -0,0 +1,19 @@
.SettingsButton {
width: 35px;
height: 35px;
background-color: var(--color-accent);
border-radius: 50%;
position: absolute;
bottom: 10px;
left: 10px;
display: flex;
justify-content: center;
align-items: center;
opacity: 0.25;
transition: all 0.3s;
}
.SettingsButton:hover {
cursor: pointer;
opacity: 1;
}