Files
Minesweeper/src/components/LangToggler/styles.scss
T
2024-02-19 14:04:56 +01:00

24 lines
321 B
SCSS

.langToggler {
position: fixed;
top: 10px;
right: 10px;
display: flex;
justify-self: center;
align-items: center;
border: none;
border-radius: 5px;
cursor: pointer;
transition: scale 0.3s ease;
overflow: hidden;
&:hover {
scale: 1.1;
}
& > img {
width: 45px;
height: 25px;
object-fit: cover;
}
}