This commit is contained in:
2026-07-05 16:41:42 +03:00
parent 293ae37ea3
commit 4729914042
3 changed files with 64 additions and 23 deletions

View File

@@ -20,6 +20,50 @@
--container: 1180px;
}
.cookie-consent-banner {
position: fixed;
right: 24px;
bottom: 24px;
z-index: 9999;
display: flex;
align-items: center;
gap: 18px;
max-width: 760px;
padding: 18px 20px;
background: #fff;
border: 1px solid rgba(15, 23, 42, 0.14);
box-shadow: 0 18px 50px rgba(15, 23, 42, 0.2);
}
.cookie-consent-banner[hidden] {
display: none;
}
.cookie-consent-banner p {
margin: 0;
color: #1f2937;
line-height: 1.45;
}
.cookie-consent-accept {
flex: 0 0 auto;
padding: 10px 20px;
border: 0;
background: var(--primary);
color: #fff;
font-weight: 700;
}
@media (max-width: 767px) {
.cookie-consent-banner {
right: 12px;
bottom: 12px;
left: 12px;
flex-direction: column;
align-items: stretch;
}
}
* {
box-sizing: border-box;
}

View File

@@ -62,7 +62,7 @@
flex: 0 0 auto;
padding: 10px 20px;
border: 0;
background: #0f766e;
background: #0d4fd6;
color: #fff;
font-weight: 700;
}