Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion marketplace.html
Original file line number Diff line number Diff line change
Expand Up @@ -1229,7 +1229,9 @@
right: 0;
top: 0;
width: 340px;
height: 100%;
height: 100vh;
max-height: 100vh;
box-sizing: border-box;
background: radial-gradient(circle at top, rgba(37, 99, 235, 0.34), transparent 55%),
rgba(15, 23, 42, 0.98);
border-left: 1px solid rgba(148, 163, 184, 0.55);
Expand All @@ -1239,6 +1241,7 @@
z-index: 1100;
display: flex;
flex-direction: column;
overflow: hidden;
padding: 18px 16px 16px;
color: #e5e7eb;
-webkit-backdrop-filter: blur(14px);
Expand All @@ -1261,6 +1264,7 @@
align-items: center;
justify-content: space-between;
margin-bottom: 8px;
flex-shrink: 0;
}

.cart-header-title {
Expand Down Expand Up @@ -1389,6 +1393,7 @@
display: flex;
flex-direction: column;
gap: 6px;
flex-shrink: 0;
}

.cart-summary-row {
Expand Down
Loading