Skip to content

Commit

Permalink
fix: make datepicker's height the same as other components' height #271
Browse files Browse the repository at this point in the history
  • Loading branch information
sun-mota committed Jan 24, 2025
1 parent af7d380 commit 40f206d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/input/src/styles/input.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ input {

position: relative;
overflow: hidden;
min-height: calc(var(--ds-size-700, $ds-size-700) + var(--ds-size-25, $ds-size-25));
max-height: calc(var(--ds-size-700, $ds-size-700) + var(--ds-size-25, $ds-size-25));
min-height: var(--ds-size-700, $ds-size-700);
max-height: var(--ds-size-700, $ds-size-700);
flex: 1;
padding: var(--ds-size-400, $ds-size-400) 0 var(--ds-size-50, $ds-size-50);
margin: 0;
Expand Down

0 comments on commit 40f206d

Please sign in to comment.