Skip to content

Commit

Permalink
try to avoid zoom when using input field
Browse files Browse the repository at this point in the history
  • Loading branch information
hdahle committed Jun 30, 2023
1 parent cbbd66b commit fc7db60
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions css/aiaiai.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
input[type="text"] {
border: none;
outline: none;
font-size: 16px;
}

.chatbot-conversation-container {
height: calc(100vh - 290px);
height: calc(100vh - 256px);
overflow-y: scroll;
margin: 1em 0;
}
Expand Down Expand Up @@ -65,14 +66,16 @@ body {
}

.user-input {
width: calc(100% - 100px);
width: calc(100% - 50px);
}

/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
select,
textarea,
input {
font-size: 16px;
}
}
}
*/

0 comments on commit fc7db60

Please sign in to comment.