Merge pull request #67 from rendi12345678/fix-css-footer

fix/footer hover
This commit is contained in:
MUYANGGUO 2024-08-23 00:44:43 -07:00 committed by GitHub
commit c623b61259
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -760,12 +760,13 @@ margin-top: 20px;
.select-chapter-title{
font-size: 16px;
}
.fade-element > * {
opacity: 0;
transition: 500ms;
.fade-element {
opacity: 0;
transition: opacity 500ms ease-in;
}
.fade-element:hover > * {
opacity: 1;
.fade-element:hover {
opacity: 1;
transition: opacity 500ms ease-in;
}
.primary-stats-title {
color: ${({ theme }) => theme.textTypeBox};