2021-06-24 01:39:44 +02:00
|
|
|
.transaction-detail-item {
|
2022-03-25 16:07:47 +01:00
|
|
|
color: var(--color-text-alternative);
|
2021-11-05 18:23:15 +01:00
|
|
|
padding: 20px 0;
|
2022-03-25 16:07:47 +01:00
|
|
|
border-bottom: 1px solid var(--color-border-default);
|
2021-06-24 01:39:44 +02:00
|
|
|
|
|
|
|
&__row {
|
|
|
|
display: flex;
|
2021-11-22 18:19:29 +01:00
|
|
|
justify-content: space-between;
|
2021-07-28 18:29:55 +02:00
|
|
|
grid-gap: 5px;
|
2021-11-29 20:02:54 +01:00
|
|
|
|
|
|
|
&-subText {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.currency-display-component {
|
|
|
|
margin-left: 4px;
|
|
|
|
}
|
|
|
|
}
|
2021-06-24 01:39:44 +02:00
|
|
|
}
|
|
|
|
|
2021-11-22 18:19:29 +01:00
|
|
|
&__detail-values {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2022-11-15 15:40:56 +01:00
|
|
|
justify-content: flex-end;
|
2021-12-07 04:51:26 +01:00
|
|
|
width: 52%;
|
2021-11-29 17:53:37 +01:00
|
|
|
|
|
|
|
&--flex-width {
|
|
|
|
width: auto;
|
|
|
|
}
|
2021-07-16 17:00:03 +02:00
|
|
|
}
|
|
|
|
|
2021-06-24 01:39:44 +02:00
|
|
|
.info-tooltip {
|
|
|
|
display: inline-block;
|
|
|
|
margin-inline-start: 4px;
|
2021-08-03 04:08:20 +02:00
|
|
|
|
|
|
|
path {
|
2022-05-25 17:35:36 +02:00
|
|
|
fill: var(--color-icon-alternative);
|
2021-08-03 04:08:20 +02:00
|
|
|
}
|
2021-06-24 01:39:44 +02:00
|
|
|
}
|
|
|
|
|
2021-07-23 15:39:10 +02:00
|
|
|
.currency-display-component {
|
|
|
|
display: inline;
|
|
|
|
}
|
2021-11-05 18:23:15 +01:00
|
|
|
|
|
|
|
&:first-of-type {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-of-type {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
padding-bottom: 0;
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
2021-06-24 01:39:44 +02:00
|
|
|
}
|