From 526bdc91cce1a90b817e424e7300e7df818c2978 Mon Sep 17 00:00:00 2001 From: Seven Of Aces Date: Wed, 1 Jan 2025 11:14:39 -0800 Subject: [PATCH] Added rounding to alerts --- components/Markdown.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/Markdown.vue b/components/Markdown.vue index a726dbe..dd55b0a 100644 --- a/components/Markdown.vue +++ b/components/Markdown.vue @@ -45,6 +45,7 @@ watch(() => props.text, (newVal) => { /* Markdown alerts get a box, a shadow, and a background+border color */ .md-contents .markdown-alert:not(.md-override) { + @apply rounded-lg; border: 1px solid #A020F0; background-color: #333; box-shadow: 0 0 7px #A020F0; @@ -211,7 +212,7 @@ watch(() => props.text, (newVal) => { background-color: #333; color: white; } - +Hosted .md-contents button:not(.md-override) { background-color: #333; color: white;