39 lines
682 B
SCSS
39 lines
682 B
SCSS
@use '../../../styles/variables' as *;
|
|
|
|
.cart-drawer__empty {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 48px 20px 60px;
|
|
text-align: center;
|
|
flex: 1;
|
|
}
|
|
|
|
.cart-drawer__empty-title {
|
|
font-size: 15px;
|
|
font-weight: 600;
|
|
color: $text-3;
|
|
}
|
|
|
|
.cart-drawer__empty-desc {
|
|
font-size: 13px;
|
|
color: $text-4;
|
|
margin-top: 6px;
|
|
}
|
|
|
|
.cart-drawer__empty-btn {
|
|
margin-top: 20px;
|
|
height: 38px;
|
|
padding: 0 24px;
|
|
border-radius: 19px;
|
|
border: 1.5px solid $primary;
|
|
background: transparent;
|
|
color: $primary;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|