add example

This commit is contained in:
Tomas Mirchev 2025-10-20 22:24:19 +02:00
parent 33ac36ddd3
commit 8ded2d688b

View File

@ -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;
}
}
```