mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-20 12:09:36 +02:00
19 lines
333 B
CSS
19 lines
333 B
CSS
|
.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;
|
||
|
}
|