refactor(PaginationInput): transition when hovering the button

This commit is contained in:
Tim 2024-10-29 08:46:28 +01:00
parent d9b82acc4a
commit ea933fe5c3

View file

@ -18,9 +18,11 @@
display: block;
color: var(--primary-foreground-color);
opacity: 0.7;
transition: opacity 0.2s ease-in-out;
transition: opacity 0.1s ease-in;
}
&:hover {
&:hover {
.icon {
opacity: 1;
}
}