1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/css/itcss/components/token-list.scss

35 lines
700 B
SCSS
Raw Normal View History

2017-09-06 12:17:49 +02:00
$wallet-balance-breakpoint: 890px;
$wallet-balance-breakpoint-range: "screen and (min-width: #{$break-large}) and (max-width: #{$wallet-balance-breakpoint})";
2017-09-05 10:48:52 +02:00
.token-list-item {
display: flex;
flex-flow: row nowrap;
align-items: center;
padding: 20px 24px;
cursor: pointer;
2017-09-06 12:17:49 +02:00
transition: linear 200ms;
background-color: rgba($wallet-balance-bg, 0);
@media #{$wallet-balance-breakpoint-range} {
padding: 10% 4%;
}
&--active {
background-color: rgba($wallet-balance-bg, 1);
}
2017-09-05 10:48:52 +02:00
&__identicon {
margin-right: 15px;
border: '1px solid #dedede';
}
&__token-balance {
font-size: 130%;
}
&__fiat-amount {
margin-top: .25%;
font-size: 105%;
}
}