gluestick/src/components/ColorChanger.module.css

15 lines
184 B
CSS

.color-changer {
position: absolute;
right: 0;
bottom: 0;
padding: 8px;
opacity: 30%;
transition: opacity 0.25s ease-in-out;
}
.color-changer:hover {
opacity: 100%;
}