[Bug Fix] New Home Page Bug Fixes (#1973)

* Fix favorites section being cut off if it has too many items.

* Fix the group collapse transition animation playing on page load.
This commit is contained in:
FiratUsta
2024-09-30 14:00:30 +03:00
committed by GitHub
parent 86bb37aa7a
commit 092b4cc5cb
2 changed files with 19 additions and 4 deletions

View File

@@ -62,12 +62,15 @@
display: grid;
grid-template-columns: repeat(auto-fill, minmax(15rem, 3fr));
gap: 30px 30px;
transition: 0.5s all;
overflow: hidden;
margin: -20px;
padding: 20px;
}
.feature-group-container.animated-group {
transition: 0.5s all;
}
.feature-group.collapsed>.feature-group-container {
max-height: 0 !important;
margin: 0;