From 45d6cad605aca6590a06ee7dfbef4d9ffa24fe89 Mon Sep 17 00:00:00 2001 From: Rico van Zelst Date: Wed, 26 Feb 2025 21:16:57 +0100 Subject: [PATCH] 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 --- resources/css/app.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/resources/css/app.css b/resources/css/app.css index 8e67e45..ac9163e 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -153,3 +153,14 @@ ins.adsbygoogle[data-ad-status="unfilled"] { 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; +}