mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 12:29:06 +01:00
27 lines
353 B
SCSS
27 lines
353 B
SCSS
.exchange-rate-display {
|
|
@include H6;
|
|
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: center;
|
|
color: var(--color-text-default);
|
|
width: 100%;
|
|
flex-wrap: wrap;
|
|
|
|
span {
|
|
margin-right: 4px;
|
|
}
|
|
|
|
&__bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
&__quote-rate {
|
|
cursor: pointer;
|
|
}
|
|
|
|
&__quote-rate--no-link {
|
|
cursor: text;
|
|
}
|
|
}
|