feat: enhance ad container styles

Added new styles for the ad container to improve layout and appearance.
- Set overflow to hidden
- Defined width and max-width as 100%
- Added background color and border radius for ads
This commit is contained in:
Rico van Zelst
2025-02-26 21:16:57 +01:00
parent 4c8ff4a7ec
commit 45d6cad605

View File

@@ -153,3 +153,14 @@
ins.adsbygoogle[data-ad-status="unfilled"] { ins.adsbygoogle[data-ad-status="unfilled"] {
display: none !important; display: none !important;
} }
.ad-container {
overflow: hidden;
width: 100%;
max-width: 100%;
}
.ad-container ins.adsbygoogle {
background-color: rgba(0, 0, 0, 0.02);
border-radius: 4px;
}