[Fix] grid view of domain cards when more than 5 (#1369)

* Fix grid view of domain cards when more than 5

* Also fit 5 when there is a scrollbar
This commit is contained in:
Carlos Fernandez 2025-12-06 05:58:41 -08:00 committed by GitHub
parent 1fbce2507a
commit 2171c1b433
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View file

@ -12,7 +12,8 @@
.card-list {
display: flex;
flex-direction: row;
gap: 10px;
flex-wrap: wrap;
gap: 6px;
align-items: center;
}
}

View file

@ -290,7 +290,7 @@
.card-item {
position: relative;
height: 120px;
width: 100px;
width: 98px;
border: 1px solid light-dark(@dark-blue, @golden);
border-radius: 6px;
cursor: pointer;