diff options
| author | Fuwn <[email protected]> | 2026-05-20 12:26:03 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-05-20 12:26:03 +0000 |
| commit | 786dbc4b0e843a45527d113e7f0e6b04321e6ebd (patch) | |
| tree | 763228ea378f2b60e5ae6075ec2d2f08fd2ebbc2 /src | |
| parent | fix(tooltip): suppress hover tooltips on coarse-pointer devices (diff) | |
| download | due.moe-786dbc4b0e843a45527d113e7f0e6b04321e6ebd.tar.xz due.moe-786dbc4b0e843a45527d113e7f0e6b04321e6ebd.zip | |
fix(select): cap width to container to prevent mobile overflow
Diffstat (limited to 'src')
| -rw-r--r-- | src/styles/input.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/styles/input.css b/src/styles/input.css index a46c9b13..aaadd9a2 100644 --- a/src/styles/input.css +++ b/src/styles/input.css @@ -66,6 +66,7 @@ select { select { padding: 0.25em 0.5em; + max-width: 100%; } input[type="checkbox"] { |