diff options
| author | user <user@node5.net> | 2024-02-29 16:13:07 +0100 |
|---|---|---|
| committer | user <user@node5.net> | 2024-02-29 16:13:07 +0100 |
| commit | 51246acf45e0bdf01a8a9f3a2553e089a5101adb (patch) | |
| tree | 11c07bdd94a790e20bb598588f7e76515ed58d22 | |
| parent | df0948bb004a4a5ac3135be06495d159a4d0eefe (diff) | |
comment fill width
| -rw-r--r-- | blog.node5.net/static/main.css | 4 | ||||
| -rw-r--r-- | blog.node5.net/templates/base.html | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/blog.node5.net/static/main.css b/blog.node5.net/static/main.css index 11277c6..4b65acb 100644 --- a/blog.node5.net/static/main.css +++ b/blog.node5.net/static/main.css @@ -90,3 +90,7 @@ tr:nth-child(even) { label{ font-size: 0.75em; } + +.width-100{ + width: 100%; +} \ No newline at end of file diff --git a/blog.node5.net/templates/base.html b/blog.node5.net/templates/base.html index 9f8c8bc..026d7ec 100644 --- a/blog.node5.net/templates/base.html +++ b/blog.node5.net/templates/base.html @@ -42,7 +42,7 @@ <label for="comment">Comment, </label> <label for="public">Show publicly (entire comment)</label> <input type="checkbox" id="public" name="public" checked><br> - <textarea id="comment" required name="comment" rows="5" cols="80" id="comment"></textarea> + <textarea class="width-100" rows="4" id="comment" required name="comment" id="comment"></textarea><br><br> <input type="submit" value="Post comment" /> </form> <br> |
