You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
621 B
SCSS

2 years ago
.theme-switcher {
align-self: center;
margin-left: 0.5rem;
width: 1rem;
height: 1rem;
2 years ago
position: relative;
cursor: pointer;
.switch {
width: 1rem;
height: 1rem;
2 years ago
position: absolute;
left: 0px;
display: flex;
justify-content: center;
align-items: center;
img {
width: 100%;
height: auto;
position: absolute;
border: none;
}
.sun {
opacity: 0;
2 years ago
}
.moon {
opacity: 1;
2 years ago
}
}
input {
display: none;
&:checked + .switch {
.sun {
opacity: 1;
2 years ago
}
.moon {
opacity: 0;
2 years ago
}
}
}
}