lunasqu.ee-nuxt/assets/styles/components/_language-list.scss

18 lines
256 B
SCSS
Raw Normal View History

2022-10-15 15:20:33 +00:00
.language-list {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
font-size: 3rem;
margin-bottom: 1rem;
span {
transition: opacity linear 0.33s;
opacity: 0.5;
&:hover {
opacity: 1;
}
}
}