From 321d5b4be8dc08a672d23f2a0e9bbc17fe322d4d Mon Sep 17 00:00:00 2001 From: Eliseu Amaro Date: Thu, 23 Sep 2021 17:22:44 +0100 Subject: [PATCH] [CSS] Embedded width didn't conform to note's own properly. --- public/assets/css/base.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/assets/css/base.css b/public/assets/css/base.css index b3572e92ed..88849f5d59 100644 --- a/public/assets/css/base.css +++ b/public/assets/css/base.css @@ -285,6 +285,7 @@ hr { flex-direction: column; padding: var(--unit-size); border: unset; + width: max-content; } .h-entry .embed header img { @@ -299,6 +300,10 @@ hr { border-radius: var(--unit-size); border: solid 2px var(--bg2); } +.h-entry *, +.note * { + font-family: var(--main-font); +} .note-wrapper { width: 100%; @@ -346,7 +351,7 @@ hr { } .note-author { - font-size: var(--medium-size); + font-size: var(--small-size); font-weight: bold; display: flex; align-items: center;