You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OneAuth/oaer/lib/css/oaer.scss

33 lines
514 B
SCSS

/*
* oaer.css
* Copyright (C) 2024 veypi
*
* Distributed under terms of the MIT license.
*/
@import './animate.scss';
.voa {
user-select: none;
cursor: pointer;
height: 4rem;
width: 4rem;
display: flex;
justify-content: center;
align-items: center;
.voa-off{
}
.voa-on {
border-radius: 100%;
background: #999;
animation: scale-up 100ms ease-out forwards;
}
:hover{
opacity: 0.9;
}
}
.voa-animate-off-scale-off {
animation: scale-off 100ms ease-out forwards;
}