diff options
author | Yarden Shoham <git@yardenshoham.com> | 2024-02-10 14:55:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-10 14:55:46 +0200 |
commit | 5f5b5ba6e3e50ba5385e6cbf5957d4b73805769b (patch) | |
tree | b5e6b071e75787eb1486826e3bf3a58af186fb5a | |
parent | 5b2fd0fc19a2a77414c8e2989b4794b6617221f5 (diff) | |
download | gitea-5f5b5ba6e3e50ba5385e6cbf5957d4b73805769b.tar.gz gitea-5f5b5ba6e3e50ba5385e6cbf5957d4b73805769b.zip |
Make blockquote border size less aggressive (#29124)
It's too thick
I made it match GitHub's size
# Before
![image](https://github.com/go-gitea/gitea/assets/20454870/08c05004-acd9-485e-9219-110d93fe1226)
# After
![image](https://github.com/go-gitea/gitea/assets/20454870/e2e32b6c-4ba8-488e-9405-95d33f80adf7)
Signed-off-by: Yarden Shoham <git@yardenshoham.com>
-rw-r--r-- | web_src/css/markup/content.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web_src/css/markup/content.css b/web_src/css/markup/content.css index caefa1605c..5eeef078a5 100644 --- a/web_src/css/markup/content.css +++ b/web_src/css/markup/content.css @@ -270,7 +270,7 @@ margin-left: 0; padding: 0 15px; color: var(--color-text-light-2); - border-left: 4px solid var(--color-secondary); + border-left: 0.25em solid var(--color-secondary); } .markup blockquote > :first-child { |