Skip to content

Commit

Permalink
Make textarea only vertically resizable (#158)
Browse files Browse the repository at this point in the history
Closes #95
  • Loading branch information
KasperZutterman authored May 24, 2024
1 parent 254bf33 commit 4b007de
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions styles/ldf-client.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ html, input, textarea, button, pre {

body {
max-width: 650px;
min-width: fit-content;
margin: 0 auto;
padding: 1em 3em;
background: white;
Expand Down Expand Up @@ -213,6 +214,7 @@ textarea {
cursor: pointer;
font-size: .95em;
background-color: transparent;
resize: vertical;
}

.results {
Expand Down Expand Up @@ -403,6 +405,10 @@ footer {
select {
width: 250px;
}

.ldf-client {
min-width: 465px;
}
}


Expand Down

0 comments on commit 4b007de

Please sign in to comment.