Skip to content

Commit

Permalink
fix: input: fixes rectangle shape for theme 2 input and textarea (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
dkilgore-eightfold authored Aug 10, 2022
1 parent 54b6418 commit 658d009
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Inputs/input.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

background-color: var(--background-color);
border: 1px solid var(--border-color);
border-radius: $corner-radius-xl;
border-radius: $corner-radius-m;
box-sizing: border-box;
color: var(--grey-color-60);
font-family: 'Source Sans Pro', sans-serif;
Expand Down Expand Up @@ -871,7 +871,7 @@
.text-area {
background-color: var(--background-color);
border: 1px solid var(--border-color);
border-radius: $corner-radius-s;
border-radius: $corner-radius-m;
box-sizing: border-box;
color: var(--grey-color-60);
font-family: 'Source Sans Pro', sans-serif;
Expand Down

0 comments on commit 658d009

Please sign in to comment.