From 8ded2d688b5a2afc5e2588018b1fbb1d6ab95106 Mon Sep 17 00:00:00 2001 From: Tomas Mirchev Date: Mon, 20 Oct 2025 22:24:19 +0200 Subject: [PATCH] add example --- README.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7860b23..665aaa6 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,19 @@ -# css-injector-extension +# CSS Injector Extension + +Examples: + +**ChatGPT** + +> Make thread messages wider + +```css +@layer override { + :root { + --thread-content-max-width: 100% !important; + } + [class*="thread-"] { + max-width: 100% !important; + } +} +```