mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 14:15:06 +01:00
798930afba
* Add Swap feature to CurrencyInput * Fix linter error * Fix and Add unit tests
27 lines
436 B
SCSS
27 lines
436 B
SCSS
.currency-input {
|
|
&__conversion-component {
|
|
font-size: 12px;
|
|
line-height: 12px;
|
|
padding-left: 1px;
|
|
}
|
|
|
|
&__swap-component {
|
|
flex: 0 0 auto;
|
|
height: 24px;
|
|
width: 24px;
|
|
background-image: url("images/icons/swap.svg");
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
cursor: pointer;
|
|
opacity: .4;
|
|
|
|
&:hover {
|
|
opacity: .3;
|
|
}
|
|
|
|
&:active {
|
|
opacity: .5;
|
|
}
|
|
}
|
|
}
|