26 lines
405 B
Plaintext
26 lines
405 B
Plaintext
.cart-bottom {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background-color: #fff;
|
|
padding: 10px;
|
|
border-top: 1px solid #eee;
|
|
}
|
|
|
|
.cart-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.confirm-button {
|
|
background-color: #ff5722;
|
|
color: #fff;
|
|
padding: 20px 50px;
|
|
border: none;
|
|
border-radius: 5px;
|
|
}
|
|
|