2018-07-31 07:03:20 +02:00
|
|
|
.transaction-list {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex: 1;
|
|
|
|
|
2018-08-06 22:45:56 +02:00
|
|
|
&__completed-transactions {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2018-08-31 21:37:30 +02:00
|
|
|
flex: 1;
|
2018-08-06 22:45:56 +02:00
|
|
|
}
|
|
|
|
|
2018-07-31 07:03:20 +02:00
|
|
|
&__header {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H6;
|
|
|
|
|
2019-08-20 20:52:00 +02:00
|
|
|
flex: 0 0 auto;
|
|
|
|
color: $Grey-400;
|
2019-06-13 04:56:04 +02:00
|
|
|
border-bottom: 1px solid $Grey-100;
|
2019-08-20 20:52:00 +02:00
|
|
|
padding: 8px 0 8px 20px;
|
2018-07-31 07:03:20 +02:00
|
|
|
|
2019-08-20 20:52:00 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
padding: 8px 0 8px 16px;
|
2018-07-31 07:03:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__transactions {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__pending-transactions {
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__empty {
|
|
|
|
flex: 1;
|
|
|
|
display: grid;
|
2019-03-06 15:48:36 +01:00
|
|
|
grid-template-rows: auto;
|
2020-06-04 17:52:21 +02:00
|
|
|
padding-top: 24px;
|
2018-07-31 07:03:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__empty-text {
|
|
|
|
grid-row-start: 2;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
color: $silver;
|
|
|
|
}
|
2020-07-15 15:13:40 +02:00
|
|
|
|
2020-05-26 22:49:11 +02:00
|
|
|
&__view-more {
|
|
|
|
margin: 16px auto;
|
|
|
|
max-width: 200px;
|
|
|
|
}
|
2018-07-31 07:03:20 +02:00
|
|
|
}
|