[PATCH] Avoid clipping gist code's content
Export this patch
---
Before: https://canto.eletrotupi.com/NZ7CV.png
After: https://canto.eletrotupi.com/cDOsq.png
src/css/app.css | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/css/app.css b/src/css/app.css
index 3799385..06f3611 100644
--- a/src/css/app.css
+++ b/src/css/app.css
@@ -11,6 +11,10 @@ p.meta {
width: 55%;
}
+ .gist > code {
+ width: 100% !important;
+ }
+
@media (max-width: 760px) {
.gist {
width: 100%;
--
2.36.2
Thanks so much for bringing this to my attention. I applied your patch and then took the opportunity to fix some other code/pre related bugs as well.
Edward