mirror of
https://github.com/CNCKitchen/stlTexturizer.git
synced 2026-04-07 22:11:32 +00:00
feat: add store CTA and dimension annotations, update safety cap and translations
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user