41 lines
645 B
CSS
41 lines
645 B
CSS
.summary {
|
|
border-radius: var(--Corner-radius-Large);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x2);
|
|
padding: var(--Spacing-x3);
|
|
height: 100%;
|
|
}
|
|
|
|
.date {
|
|
align-items: center;
|
|
display: flex;
|
|
gap: var(--Spacing-x1);
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.link {
|
|
margin-top: var(--Spacing-x1);
|
|
}
|
|
|
|
.addOns {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x-one-and-half);
|
|
}
|
|
|
|
.entry {
|
|
display: flex;
|
|
gap: var(--Spacing-x-half);
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.entry > :last-child {
|
|
justify-items: flex-end;
|
|
}
|
|
.total {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x2);
|
|
}
|