feat: add dismiss button for store call-to-action and style updates

This commit is contained in:
CNCKitchen
2026-04-02 10:28:37 +02:00
parent 80f597141c
commit 6ad91f9707
5 changed files with 27 additions and 1 deletions
+19
View File
@@ -258,6 +258,25 @@ main {
#store-cta a:hover {
opacity: 0.85;
}
#store-cta-dismiss {
background: none;
border: none;
color: #fff;
font-size: 11px;
line-height: 1;
cursor: pointer;
opacity: 0.7;
padding: 0 2px;
margin-left: 8px;
font-weight: bold;
vertical-align: top;
position: relative;
top: -4px;
transition: opacity 0.15s;
}
#store-cta-dismiss:hover {
opacity: 1;
}
.store-cta-hidden {
display: none !important;
}