2018-08-24 01:44:38 +02:00
|
|
|
.transaction-view-balance {
|
2018-07-31 07:03:20 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
flex: 1;
|
|
|
|
height: 54px;
|
2018-10-21 13:12:40 +02:00
|
|
|
min-width: 0;
|
2018-07-31 07:03:20 +02:00
|
|
|
|
2018-11-20 01:06:34 +01:00
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
flex-direction: column;
|
|
|
|
height: initial;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2018-07-31 07:03:20 +02:00
|
|
|
&__balance {
|
2018-10-21 13:12:40 +02:00
|
|
|
margin: 0 12px;
|
2018-07-31 07:03:20 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2018-10-21 13:12:40 +02:00
|
|
|
min-width: 0;
|
2019-01-30 13:16:12 +01:00
|
|
|
position: relative;
|
2018-07-31 07:03:20 +02:00
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
align-items: center;
|
|
|
|
margin: 16px 0;
|
2018-11-20 01:06:34 +01:00
|
|
|
padding: 0 16px;
|
|
|
|
max-width: 100%;
|
2018-08-03 05:20:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-30 13:16:12 +01:00
|
|
|
&__primary-container {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2018-07-31 07:03:20 +02:00
|
|
|
&__primary-balance {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
font-size: 1.75rem;
|
2018-11-20 01:06:34 +01:00
|
|
|
width: 100%;
|
2019-01-23 16:25:34 +01:00
|
|
|
justify-content: center;
|
2018-07-31 07:03:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-30 13:16:12 +01:00
|
|
|
&__cached-star {
|
|
|
|
margin-left: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__cached-balance, &__cached-star {
|
|
|
|
color: $web-orange;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__cached-secondary-balance {
|
|
|
|
color: rgba(220, 153, 18, 0.6901960784313725);
|
|
|
|
font-size: 1.15rem;
|
|
|
|
}
|
|
|
|
|
2018-07-31 07:03:20 +02:00
|
|
|
&__secondary-balance {
|
|
|
|
font-size: 1.15rem;
|
|
|
|
color: #a0a0a0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__balance-container {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
2018-10-21 13:12:40 +02:00
|
|
|
min-width: 0;
|
2018-07-31 07:03:20 +02:00
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
flex-direction: column;
|
2018-11-20 01:06:34 +01:00
|
|
|
width: 100%;
|
2018-07-31 07:03:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__buttons {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__button {
|
|
|
|
min-width: initial;
|
|
|
|
width: 100px;
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-right: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|