fix(589): Added animation to rate summary

This commit is contained in:
Pontus Dreij
2024-11-08 16:59:40 +01:00
parent 61027acd0d
commit 73fc63b493
2 changed files with 19 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
.summary {
position: fixed;
z-index: 10;
bottom: 0;
bottom: -100%;
left: 0;
right: 0;
background-color: var(--Base-Surface-Primary-light-Normal);
@@ -9,6 +9,12 @@
display: flex;
justify-content: space-between;
align-items: center;
border-top: 1px solid var(--Base-Border-Subtle);
transition: bottom 300ms ease-in-out;
}
.summaryVisible {
bottom: 0;
}
.summaryPrice {
@@ -35,6 +41,7 @@
margin-left: auto;
height: fit-content;
width: 100%;
min-width: 140px;
}
.summaryPriceTextMobile {