diff options
| author | Ben Woodward <ben@bdw.to> | 2021-07-06 11:51:44 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-06 11:51:44 -0700 |
| commit | cb786fa494f3799afb406e9ff53ace372fd46522 (patch) | |
| tree | ee7942cc4470555688a83d7d3b2ed9214b6c11bd /src/components/style.css | |
| parent | f3387a3bf5cdbd7b747afe0198cce4a60a7875c0 (diff) | |
Change inputs to textareas (#34)
Issue #28 discovered long ssid and password values would be visibly cropped.
This change replaces the input fields with 2-row textareas that properly
handle the maximum length of both ssids and passwords, 32 and 63 characters
respectively.
Diffstat (limited to 'src/components/style.css')
| -rw-r--r-- | src/components/style.css | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/components/style.css b/src/components/style.css index d1440e2..4feb1d6 100644 --- a/src/components/style.css +++ b/src/components/style.css | |||
| @@ -14,13 +14,15 @@ | |||
| 14 | .details .text * { | 14 | .details .text * { |
| 15 | margin: 0 1em; | 15 | margin: 0 1em; |
| 16 | } | 16 | } |
| 17 | .details .text input { | 17 | .details .text textarea { |
| 18 | background-color: #fff; | 18 | background-color: #fff; |
| 19 | border: solid 1px #ddd; | 19 | border: solid 1px #ddd; |
| 20 | font-family: 'Source Code Pro', serif; | 20 | font-family: 'Source Code Pro', serif; |
| 21 | font-size: 1.4em; | 21 | font-size: 1.3em; |
| 22 | font-weight: bold; | 22 | font-weight: bold; |
| 23 | line-height: 2; | 23 | height: 3em; |
| 24 | overflow: hidden; | ||
| 25 | resize: none; | ||
| 24 | } | 26 | } |
| 25 | .print-btn { | 27 | .print-btn { |
| 26 | padding-top: 2em; | 28 | padding-top: 2em; |
