first upload all files

This commit is contained in:
NW
2023-06-11 13:14:03 +01:00
parent f14dbc52b5
commit c08b36d1b6
1705 changed files with 106852 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
.sidebar-cart-bottom {
position: absolute;
left: 0;
bottom: 0;
right: 0;
background: $color-white;
.sidebar-cart-subtotal {
display: flex;
margin: 0 30px;
padding: 25px 0;
justify-content: space-between;
border-top: 1px solid $border-color-lite;
> span {
font-weight: 500;
color: $color-default;
color: var(--color-primary);
}
}
.sidebar-cart-actions {
display: flex;
padding: 20px 30px;
background: $color-white-lite;
justify-content: space-between;
}
}

View File

@@ -0,0 +1,84 @@
.sidebar-cart-middle {
position: absolute;
left: 0;
right: 0;
top: 60px;
bottom: 155px;
padding: 0 30px;
&.empty {
bottom: 0;
overflow: visible;
}
}
.sidebar-cart-items-wrap {
padding: 5px 0;
background: $color-white;
}
.sidebar-cart-item {
position: relative;
display: flex;
padding: 25px 0 21px;
border-bottom: 1px solid $color-white-lite;
&:last-child {
border-bottom: none;
}
.product-image {
height: 46px;
width: 46px;
min-width: 46px;
border-radius: $radius-default;
overflow: hidden;
.image-placeholder {
height: 25px;
width: 25px;
}
}
.product-info {
margin: 0 30px 0 20px;
min-width: 0;
.product-name {
font-size: 15px;
font-weight: 400;
line-height: 24px;
display: block;
color: $color-black;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
&:hover {
color: $color-default;
color: var(--color-primary);
}
}
.product-quantity {
font-size: 13px;
line-height: 26px;
color: #666666;
}
}
.remove-cart-item {
position: absolute;
top: 16px;
right: -8px;
.btn-remove {
font-size: 14px;
opacity: 0.6;
&:hover {
opacity: 1;
}
}
}
}

View File

@@ -0,0 +1,29 @@
.sidebar-cart-top {
display: flex;
padding: 15px 30px;
align-items: center;
justify-content: space-between;
background: $color-default;
background: var(--color-primary);
.title {
font-weight: 400;
color: $color-white;
}
.sidebar-cart-close {
display: flex;
cursor: pointer;
opacity: 0.8;
transition: $transition-default;
&:hover {
opacity: 1;
}
> i {
font-size: 18px;
color: $color-white;
}
}
}