This commit is contained in:
Iliyan Angelov
2025-11-24 16:47:37 +02:00
parent d7ff5c71e6
commit 0b1cabcfaf
45 changed files with 2021 additions and 28 deletions

View File

@@ -747,6 +747,60 @@
justify-content: center;
}
}
// GoodFirms Badge
.goodfirms-badge {
border: none !important;
outline: none !important;
box-shadow: none !important;
text-decoration: none !important;
padding: 0 !important;
margin: 0 !important;
display: inline-block !important;
background: transparent !important;
line-height: 0 !important;
&:focus,
&:focus-visible,
&:active,
&:hover {
border: none !important;
outline: none !important;
box-shadow: none !important;
text-decoration: none !important;
}
.goodfirms-image,
img {
border: none !important;
outline: none !important;
box-shadow: none !important;
padding: 0 !important;
margin: 0 !important;
display: block !important;
vertical-align: top !important;
max-width: 100% !important;
height: auto !important;
}
// Target the actual img element that Next.js Image renders
img {
border: 0 !important;
border-style: none !important;
border-width: 0 !important;
border-color: transparent !important;
border-image: none !important;
}
}
.goodfirms-wrapper {
line-height: 0 !important;
* {
border: none !important;
outline: none !important;
}
}
}
/* ====

View File

@@ -141,13 +141,16 @@
min-width: 280px !important;
max-width: 320px;
max-height: 500px;
overflow-y: auto;
overflow-x: hidden;
overflow-y: auto !important;
overflow-x: hidden !important;
opacity: 0;
visibility: hidden;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 9999 !important;
backdrop-filter: blur(25px) saturate(180%);
pointer-events: none;
scroll-behavior: smooth;
-webkit-overflow-scrolling: touch;
// Custom scrollbar styles
&::-webkit-scrollbar {
@@ -174,6 +177,19 @@
visibility: visible !important;
transform: translateX(-50%) translateY(0) scale(1) !important;
display: block !important;
pointer-events: auto !important;
}
// Bridge element to cover the gap
&::after {
content: "";
position: absolute;
top: -12px;
left: 0;
right: 0;
height: 12px;
pointer-events: auto;
z-index: -1;
}
&::before {
@@ -188,6 +204,7 @@
border-right: 8px solid transparent;
border-bottom: 8px solid #1a1a1a;
filter: drop-shadow(0 -3px 8px rgba(0, 0, 0, 0.5));
pointer-events: none;
}
li {