26 lines
561 B
CSS
26 lines
561 B
CSS
.detailsButton {
|
|
align-self: start;
|
|
border-radius: 0;
|
|
height: auto;
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.content {
|
|
display: grid;
|
|
gap: var(--Spacing-x2);
|
|
}
|
|
|
|
.amenity {
|
|
font-family: var(--typography-Body-Regular-fontFamily);
|
|
border-bottom: 1px solid var(--Base-Border-Subtle);
|
|
/* padding set to align with AccordionItem which has a different composition */
|
|
padding: var(--Spacing-x2)
|
|
calc(var(--Spacing-x1) + var(--Spacing-x-one-and-half));
|
|
}
|
|
|
|
.list {
|
|
font-family: var(--typography-Body-Regular-fontFamily);
|
|
list-style: inside;
|
|
}
|