1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 20:05:27 +02:00
metamask-extension/ui/app/css/itcss/components/currency-display.scss

56 lines
927 B
SCSS
Raw Normal View History

2017-10-09 18:25:23 +02:00
.currency-display {
height: 54px;
2017-10-19 19:53:56 +02:00
width: 100%ß;
2017-10-09 18:25:23 +02:00
border: 1px solid $alto;
border-radius: 4px;
background-color: $white;
2018-02-13 07:39:15 +01:00
color: $scorpion;
2017-10-09 18:25:23 +02:00
font-family: Roboto;
font-size: 16px;
padding: 8px 10px;
position: relative;
&__primary-row {
display: flex;
}
&__input {
color: $scorpion;
font-family: Roboto;
font-size: 16px;
line-height: 22px;
border: none;
outline: 0 !important;
max-width: 100%;
2017-10-09 18:25:23 +02:00
}
&__primary-currency {
color: $scorpion;
font-weight: 400;
font-family: Roboto;
font-size: 16px;
line-height: 22px;
}
&__converted-row {
display: flex;
}
&__converted-value,
&__converted-currency {
color: $dusty-gray;
font-family: Roboto;
font-size: 12px;
line-height: 12px;
}
&__input-wrapper {
position: relative;
display: flex;
}
&__currency-symbol {
margin-top: 1px;
2018-02-13 07:39:15 +01:00
color: $scorpion;
}
2017-10-09 18:25:23 +02:00
}