feat: add store CTA and dimension annotations, update safety cap and translations

This commit is contained in:
CNCKitchen
2026-03-18 15:17:46 +01:00
parent 4654e4b32d
commit 0600877849
6 changed files with 151 additions and 24 deletions
+35
View File
@@ -219,6 +219,41 @@ main {
inset: 0;
}
#store-cta-wrapper {
position: absolute;
bottom: 14px;
right: 14px;
display: flex;
align-items: center;
gap: 8px;
z-index: 20;
pointer-events: none;
/* relative so the dismiss button can be positioned against the anchor */
}
#store-cta {
display: block;
position: relative;
padding: 10px 18px;
background: var(--accent);
color: #fff;
font-size: 14px;
font-weight: 700;
text-decoration: none;
border-radius: 8px;
box-shadow: none;
pointer-events: all;
white-space: nowrap;
transition: background 0.15s, transform 0.15s;
letter-spacing: 0.01em;
}
#store-cta:hover {
background: var(--accent-hover);
transform: translateY(-1px);
}
.store-cta-hidden {
display: none !important;
}
#viewport-footer {
height: 28px;
background: var(--surface);