47 lines
672 B
CSS
47 lines
672 B
CSS
.table {
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.thead {
|
|
background-color: var(--Main-Grey-10);
|
|
}
|
|
|
|
.th {
|
|
padding: var(--Spacing-x2);
|
|
}
|
|
|
|
.tr {
|
|
border-top: 1px solid var(--Main-Grey-10);
|
|
}
|
|
|
|
.td {
|
|
padding: var(--Spacing-x2);
|
|
}
|
|
|
|
.transactionDetails {
|
|
display: grid;
|
|
font-size: var(--typography-Footnote-Regular-fontSize);
|
|
}
|
|
|
|
.transactionDate {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.transactionPoints {
|
|
font-size: var(--typography-Body-Regular-fontSize);
|
|
}
|
|
|
|
.placeholder {
|
|
text-align: center;
|
|
padding: var(--Spacing-x4);
|
|
border: 1px solid var(--Main-Grey-10);
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.container {
|
|
display: none;
|
|
}
|
|
}
|