commit 3427c4137c214937fecda844505880a42f20bf63 parent 5603270c0635efe0b2bdd38f7fef037ec4765517 Author: Thomasorus <contact@thomasorus.com> Date: Thu, 13 Jan 2022 21:27:04 +0100 Changed from CSS grid to a simple display block with width 100% on textarea Diffstat:
M | html/head.html | | | 12 | +++++++++++- |
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/html/head.html b/html/head.html @@ -67,7 +67,17 @@ user-select: all; } pre { overflow: auto; } - .post-container { display: grid; max-width: 30rem; margin-top: 1rem; } + + .post-container { + max-width: 30rem; + margin-top: 1rem; + } + .post-container > * { + display: block; + } + .post-container textarea { + width: 100%; + } body { padding: 2rem; background: wheat; } * { margin-bottom: 1rem; }