fix CSS of grantee list in token generate window

This commit is contained in:
Hazelnoot 2025-06-22 10:32:08 -04:00
parent 62e3a881f9
commit 308bb2639b

View file

@ -246,6 +246,11 @@ function removeGrantee(index: number) {
.grantee { .grantee {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
align-items: flex-start;
gap: var(--MI-marginHalf); gap: var(--MI-marginHalf);
} }
.grantee > :first-child {
flex: 1;
}
</style> </style>