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

18 lines
256 B
SCSS

.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;
}
}
}