14 lines
331 B
CSS
14 lines
331 B
CSS
.details {
|
|
background: var(--Main-Grey-100);
|
|
color: var(--Main-Grey-White);
|
|
padding: var(--Spacing-x5) var(--Spacing-x5) var(--Spacing-x9)
|
|
var(--Spacing-x5);
|
|
}
|
|
|
|
.imageContainer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
border-bottom: 1px solid rgba(227, 217, 209, 0.2);
|
|
padding: 0 0 var(--Spacing-x2) 0;
|
|
}
|