Skip to content

Instantly share code, notes, and snippets.

@ProgrammingFire
Created November 29, 2021 10:31
Show Gist options
  • Save ProgrammingFire/e741541faa706b2ced8fa6e985db021d to your computer and use it in GitHub Desktop.
Save ProgrammingFire/e741541faa706b2ced8fa6e985db021d to your computer and use it in GitHub Desktop.
Form Field Design With SCSS
input,
textarea {
width: 30vw;
border: 2px solid #ebebf2;
border-radius: 5px;
padding: 1rem 2rem;
&:focus {
outline: none;
border: 2px solid #7985ff;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment