From a184c707d50985e9436792f3f81459374b298366 Mon Sep 17 00:00:00 2001 From: James Mills Date: Fri, 6 Sep 2024 15:04:36 +0100 Subject: [PATCH] Adding border and shadow --- templates/lazy-ladybird/styles.css | 2 ++ templates/weary-wolverine/styles.css | 2 ++ 2 files changed, 4 insertions(+) diff --git a/templates/lazy-ladybird/styles.css b/templates/lazy-ladybird/styles.css index 01d7aab..7fa6db8 100644 --- a/templates/lazy-ladybird/styles.css +++ b/templates/lazy-ladybird/styles.css @@ -40,6 +40,8 @@ .rga_card-ad-template { background-color: #ffffff; border-radius: var(--rga-ad-border-radius); + border: 1px solid #ccc; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); display: flex; flex-direction: column; gap: var(--rga-ad-spacing); diff --git a/templates/weary-wolverine/styles.css b/templates/weary-wolverine/styles.css index f65aa4f..19c77ba 100644 --- a/templates/weary-wolverine/styles.css +++ b/templates/weary-wolverine/styles.css @@ -38,6 +38,8 @@ .rga_simple-ad-template { background-color: #ffffff; border-radius: var(--rga-ad-border-radius); + border: 1px solid #ccc; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: var(--rga-ad-spacing);