2022-10-04 04:27:07 +00:00
|
|
|
@import './order-page';
|
2019-03-19 06:18:32 +00:00
|
|
|
|
|
|
|
.filter-options {
|
|
|
|
max-height: 300px;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.address-card {
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.check {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
2021-05-18 10:12:13 +00:00
|
|
|
border-color: var(--primary);
|
2019-03-19 06:18:32 +00:00
|
|
|
|
|
|
|
.check {
|
|
|
|
display: inline-flex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.check {
|
|
|
|
display: inline-flex;
|
2020-12-24 06:10:33 +00:00
|
|
|
padding: 0.25rem;
|
2021-05-18 10:12:13 +00:00
|
|
|
background: var(--primary);
|
2020-12-24 06:10:33 +00:00
|
|
|
color: white;
|
|
|
|
border-radius: 50%;
|
2019-03-19 06:18:32 +00:00
|
|
|
font-size: 12px;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
}
|
2019-10-09 06:11:33 +00:00
|
|
|
|
2022-10-04 04:27:07 +00:00
|
|
|
.website-list {
|
|
|
|
background-color: var(--fg-color);
|
|
|
|
padding: 0 var(--padding-lg);
|
|
|
|
border-radius: var(--border-radius-md);
|
2019-10-09 06:11:33 +00:00
|
|
|
|
2022-10-04 04:27:07 +00:00
|
|
|
@media screen and (max-width: 567px) {
|
|
|
|
margin-left: -2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.result {
|
|
|
|
border-bottom: 1px solid var(--border-color);
|
|
|
|
}
|
2019-10-09 06:11:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.transaction-list-item {
|
|
|
|
padding: 1rem 0;
|
2022-10-04 04:27:07 +00:00
|
|
|
border-bottom: 1px solid var(--border-color);
|
2019-10-09 06:11:33 +00:00
|
|
|
position: relative;
|
|
|
|
|
2022-10-04 04:27:07 +00:00
|
|
|
&:only-child, &:last-child {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
2019-10-09 06:11:33 +00:00
|
|
|
a.transaction-item-link {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
text-decoration: none;
|
|
|
|
opacity: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
text-indent: -9999px;
|
|
|
|
z-index: 0;
|
|
|
|
}
|
|
|
|
}
|
2020-04-07 06:48:47 +00:00
|
|
|
|
|
|
|
.place-order-container {
|
|
|
|
text-align: right;
|
2020-06-17 13:05:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.kb-card {
|
|
|
|
.card-body > .card-title {
|
|
|
|
line-height: 1.3;
|
|
|
|
}
|
2020-04-07 06:48:47 +00:00
|
|
|
}
|
2022-10-04 04:27:07 +00:00
|
|
|
|
|
|
|
.list-item-name, .item-total {
|
|
|
|
font-size: var(--font-size-sm);
|
|
|
|
}
|
|
|
|
|
|
|
|
.items-preview {
|
|
|
|
@media screen and (max-width: 567px) {
|
|
|
|
margin-top: 1rem;
|
|
|
|
}
|
|
|
|
}
|