Add lang toggler

This commit is contained in:
2024-02-19 14:04:56 +01:00
parent 1cf7035449
commit 588eab0caf
14 changed files with 249 additions and 87 deletions
+23
View File
@@ -0,0 +1,23 @@
.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;
}
}