summaryrefslogtreecommitdiffstatshomepage
path: root/sass/style.sass
diff options
context:
space:
mode:
authorWolfgang Müller2024-10-05 12:52:58 +0200
committerWolfgang Müller2024-10-05 14:25:41 +0200
commit51e12be4ba9525406d994272b27fdefeb079cc43 (patch)
treeb0d5f0e3e0ce68acedf156d24a868a90cac04e35 /sass/style.sass
parenteb373a706fb2b3a74f685d619f6c29bf163a4889 (diff)
downloadzunzuncito-51e12be4ba9525406d994272b27fdefeb079cc43.tar.gz
sass: Replace shadow on <pre> with rounded corners
We don't use shadows anywhere else on the site, so putting <pre> in line with <img> by using rounded corners makes more sense.
Diffstat (limited to 'sass/style.sass')
-rw-r--r--sass/style.sass2
1 files changed, 1 insertions, 1 deletions
diff --git a/sass/style.sass b/sass/style.sass
index bac94b6..3340245 100644
--- a/sass/style.sass
+++ b/sass/style.sass
@@ -86,7 +86,7 @@ pre
color: var(--fg-color-pre)
background-color: var(--bg-color-pre)
border: 1px solid var(--border-color-pre)
- box-shadow: 0px 0px 2px var(--border-color-pre)
+ border-radius: 4px
padding: .5em
overflow: auto