1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00
metamask-extension/ui/components/multichain/activity-list-item/index.scss
David Walsh 8c953d2d5b
Fix #20184 - Prevent overflow within the activity list (#20188)
* Fix #20184 - Prevent overflow within the activity list

* removing inline style, updating snap

---------

Co-authored-by: Victor Thomas <10986371+vthomas13@users.noreply.github.com>
2023-08-05 12:11:27 -04:00

16 lines
212 B
SCSS

.activity-list-item {
cursor: pointer;
&__content-container {
overflow: hidden;
}
&__primary-currency {
max-width: 130px;
@include screen-sm-min {
max-width: max-content;
}
}
}