You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
787 B
52 lines
787 B
6 years ago
|
.transaction-list {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
flex: 1;
|
||
|
|
||
6 years ago
|
&__completed-transactions {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
6 years ago
|
flex: 1;
|
||
6 years ago
|
}
|
||
|
|
||
6 years ago
|
&__header {
|
||
4 years ago
|
@include H6;
|
||
|
|
||
5 years ago
|
flex: 0 0 auto;
|
||
|
color: $Grey-400;
|
||
6 years ago
|
border-bottom: 1px solid $Grey-100;
|
||
5 years ago
|
padding: 8px 0 8px 20px;
|
||
6 years ago
|
|
||
5 years ago
|
@media screen and (max-width: $break-small) {
|
||
|
padding: 8px 0 8px 16px;
|
||
6 years ago
|
}
|
||
|
}
|
||
|
|
||
|
&__transactions {
|
||
|
flex: 1;
|
||
|
}
|
||
|
|
||
|
&__pending-transactions {
|
||
|
margin-bottom: 16px;
|
||
|
}
|
||
|
|
||
|
&__empty {
|
||
|
flex: 1;
|
||
|
display: grid;
|
||
6 years ago
|
grid-template-rows: auto;
|
||
5 years ago
|
padding-top: 24px;
|
||
6 years ago
|
}
|
||
|
|
||
|
&__empty-text {
|
||
|
grid-row-start: 2;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
color: $silver;
|
||
|
}
|
||
4 years ago
|
|
||
5 years ago
|
&__view-more {
|
||
|
margin: 16px auto;
|
||
|
max-width: 200px;
|
||
|
}
|
||
6 years ago
|
}
|