Skip to content

Commit

Permalink
remove scroll from all inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
oshioked committed Dec 7, 2022
1 parent de90048 commit a13aaa9
Showing 1 changed file with 23 additions and 12 deletions.
35 changes: 23 additions & 12 deletions styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,39 @@

html,
body {
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
min-height: 100vh;
background: #f0f2f5;
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell,
Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
min-height: 100vh;
background: #f0f2f5;
}

a {
color: inherit;
text-decoration: none;
color: inherit;
text-decoration: none;
}

* {
box-sizing: border-box;
box-sizing: border-box;
}

p {
margin: 0;
margin: 0;
}


[data-reach-dialog-overlay] {
z-index: 100000;
z-index: 100000;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}

/* Firefox */
input[type='number'] {
-moz-appearance: textfield;
}

0 comments on commit a13aaa9

Please sign in to comment.