23 lines
469 B
CSS
23 lines
469 B
CSS
.summary {
|
|
position: fixed;
|
|
z-index: 10;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background-color: var(--Base-Surface-Primary-light-Normal);
|
|
padding: var(--Spacing-x3) var(--Spacing-x7) var(--Spacing-x5);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.summaryPrice {
|
|
display: flex;
|
|
gap: var(--Spacing-x4);
|
|
}
|
|
|
|
.petInfo {
|
|
border-left: 1px solid var(--Primary-Light-On-Surface-Divider-subtle);
|
|
padding-left: var(--Spacing-x2);
|
|
}
|