diff options
| author | Bobby <[email protected]> | 2023-05-31 18:00:28 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2023-05-31 18:00:28 -0400 |
| commit | aa41643172a32dc81cf6d214289e1dedf998953d (patch) | |
| tree | 49b8ca61d5d6cad866fa7fd09ebc4bf2f7f94259 /static/css | |
| parent | 6c683c5b067b019e93619557a358e7f67c2e4d7b (diff) | |
| download | thatcomputerscientist-aa41643172a32dc81cf6d214289e1dedf998953d.tar.xz thatcomputerscientist-aa41643172a32dc81cf6d214289e1dedf998953d.zip | |
Allow Anonymous Commenting
Diffstat (limited to 'static/css')
| -rw-r--r-- | static/css/phone_compatibility.css | 10 | ||||
| -rw-r--r-- | static/css/styles.css | 14 |
2 files changed, 24 insertions, 0 deletions
diff --git a/static/css/phone_compatibility.css b/static/css/phone_compatibility.css index becbdf93..d973acbc 100644 --- a/static/css/phone_compatibility.css +++ b/static/css/phone_compatibility.css @@ -252,6 +252,16 @@ I am not sure yet. width: auto !important; float: none !important; } + + #anonymous-profile-info > div > label { + display: block; + } + + #anonymous-profile-info > div > input { + width: calc(100% - 20px); + display: block; + margin: 10px 0; + } } #ham { diff --git a/static/css/styles.css b/static/css/styles.css index 40f9e90a..7b0db28f 100644 --- a/static/css/styles.css +++ b/static/css/styles.css @@ -441,6 +441,20 @@ blockquote { z-index: 1; } +#anonymous-profile-info > div { + margin: 10px 0; +} + +#anonymous-profile-info > div > label { + width: 200px; + display: inline-block; +} + +#anonymous-profile-info > div > input { + width: 300px; + display: inline-block; +} + @media only screen and (min-width: 481px) { .post-body { line-height: 15px; |
