feat: add hover and active states to the arrow buttons

This commit is contained in:
alistair3149 2021-06-21 20:37:28 -04:00
parent d14f400e65
commit 530cdfa1b8
No known key found for this signature in database
GPG key ID: 94D081060FD3DD9C

View file

@ -50,6 +50,7 @@
bottom: 0;
display: none;
width: 20px;
border-radius: 4px;
cursor: pointer;
&:after {
@ -151,6 +152,19 @@
color: #2a4b8d;
}
}
&__header {
&__prev,
&__next {
&:hover {
background-color: rgba( 0, 24, 73, 0.03 );
}
&:active {
background-color: rgba( 0, 24, 73, 0.05 );
}
}
}
}
}