aboutsummaryrefslogtreecommitdiff
path: root/static/styles.css
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2024-01-19 16:38:14 -0600
committerChristian Cleberg <[email protected]>2024-01-19 16:38:14 -0600
commit97b8b38e98358bcbf1e270b9c274d0d37c21d344 (patch)
tree588f3a470588e4e3c93805ede56b50013e406b65 /static/styles.css
parentd54f077e6e18d9e0c261ba9cc074a46562d6e53e (diff)
downloadcleberg.net-97b8b38e98358bcbf1e270b9c274d0d37c21d344.tar.gz
cleberg.net-97b8b38e98358bcbf1e270b9c274d0d37c21d344.tar.bz2
cleberg.net-97b8b38e98358bcbf1e270b9c274d0d37c21d344.zip
fix: make sure quotes and code blocks match border radius
Diffstat (limited to 'static/styles.css')
-rw-r--r--static/styles.css3
1 files changed, 2 insertions, 1 deletions
diff --git a/static/styles.css b/static/styles.css
index 849c1f8..c55ea6c 100644
--- a/static/styles.css
+++ b/static/styles.css
@@ -453,7 +453,7 @@ code {
pre {
background-color: var(--bg-bright) !important;
- border-radius: 3px;
+ border-radius: 5px;
margin: 0.5rem 0;
padding: 0.5rem;
overflow-x: auto;
@@ -472,6 +472,7 @@ aside {
blockquote {
background-color: var(--bg-bright);
border-left: 10px solid var(--link);
+ border-radius: 5px;
margin: 1rem 0;
padding: 0.5rem 1rem;
}