mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
27 lines
359 B
SCSS
27 lines
359 B
SCSS
.exchange-rate-display {
|
|
@include H6;
|
|
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: center;
|
|
color: $Black-100;
|
|
|
|
span {
|
|
margin-right: 4px;
|
|
}
|
|
|
|
&__bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
&__switch-arrows {
|
|
cursor: pointer;
|
|
margin-top: 2px;
|
|
transition: transform 0.5s ease-in-out;
|
|
}
|
|
|
|
&--white {
|
|
color: $white;
|
|
}
|
|
}
|