62 lines
1.1 KiB
CSS
62 lines
1.1 KiB
CSS
.table {
|
|
border: none;
|
|
border-collapse: collapse;
|
|
background-color: var(--UI-Opacity-White-100);
|
|
border-radius: var(--Corner-Radius-md);
|
|
color: var(--UI-Grey-100);
|
|
}
|
|
|
|
.tr {
|
|
border-bottom: 1px solid var(--Base-Border-Subtle);
|
|
}
|
|
|
|
.tr:last-child {
|
|
border: none;
|
|
}
|
|
|
|
.td {
|
|
font-size: var(--typography-Footnote-Regular-fontSize);
|
|
text-align: center;
|
|
}
|
|
|
|
.rewardTh {
|
|
padding: var(--Space-x3) var(--Space-x2);
|
|
font-size: var(--typography-Caption-Regular-fontSize);
|
|
font-weight: var(--typography-Caption-Regular-fontWeight);
|
|
}
|
|
|
|
.details[open] .chevron {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.rewardHeader {
|
|
display: grid;
|
|
gap: var(--Space-x1);
|
|
grid-template-columns: 1fr auto;
|
|
text-align: start;
|
|
}
|
|
|
|
.rewardDescription {
|
|
margin: 0;
|
|
padding-top: var(--Space-x1);
|
|
text-align: start;
|
|
padding-right: calc(var(--Space-x3) + var(--Space-x1));
|
|
}
|
|
|
|
.rewardTitle {
|
|
color: var(--Text-Heading);
|
|
}
|
|
.chevron {
|
|
display: flex;
|
|
align-self: start;
|
|
color: var(--UI-Grey-80);
|
|
}
|
|
|
|
.summary::-webkit-details-marker {
|
|
display: none;
|
|
}
|
|
|
|
.summary {
|
|
list-style: none;
|
|
}
|