1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00

Specify row height in grid template of transaction list items to fix status spacing issue (#7319)

This commit is contained in:
Dan J Miller 2019-10-28 20:48:33 -02:30 committed by GitHub
parent af888d0ab2
commit b89d96e61a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,6 +17,7 @@
grid-template-areas:
"identicon action status primary-amount"
"identicon nonce status secondary-amount";
grid-template-rows: 24px;
@media screen and (max-width: $break-small) {
padding: .5rem 1rem;
@ -25,6 +26,7 @@
"nonce nonce nonce"
"identicon action primary-amount"
"identicon status secondary-amount";
grid-template-rows: auto 24px;
}
&:hover {