2018-07-31 07:03:20 +02:00
|
|
|
.transaction-list {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex: 1;
|
2018-09-17 19:09:48 +02:00
|
|
|
margin-top: 8px;
|
2018-07-31 07:03:20 +02:00
|
|
|
|
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 {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
font-size: .875rem;
|
|
|
|
color: $dusty-gray;
|
|
|
|
border-bottom: 1px solid $geyser;
|
2018-09-17 19:09:48 +02:00
|
|
|
padding: 8px 0 8px 20px;
|
2018-07-31 07:03:20 +02:00
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
padding: 8px 0 8px 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__transactions {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__pending-transactions {
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__empty {
|
|
|
|
flex: 1;
|
|
|
|
display: grid;
|
|
|
|
grid-template-rows: 35% 1fr;
|
2018-08-31 21:37:30 +02:00
|
|
|
padding-top: 8px;
|
2018-07-31 07:03:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__empty-text {
|
|
|
|
grid-row-start: 2;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
color: $silver;
|
|
|
|
}
|
|
|
|
}
|