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:
parent
765418d3d2
commit
7199e296b8
14 changed files with 203 additions and 39 deletions
19
client/src/components/Home/Home.module.css
Normal file
19
client/src/components/Home/Home.module.css
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue