Skip to content

Commit

Permalink
Increases input field spacing
Browse files Browse the repository at this point in the history
Improves the visual spacing and padding of input fields for better usability.  Increases gap between fields and adds bottom padding.
  • Loading branch information
charlwillia6 committed Feb 12, 2025
1 parent ca0cbff commit 8401d67
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gui/src/pages/gui.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,10 @@ const TutorialCardDiv = styled.header`
export const InputContainer = styled.div<{ isNewSession?: boolean }>`
display: flex;
flex-direction: column;
gap: 0.125rem;
gap: 0.5rem;
padding-left: 0.5rem;
padding-right: 0.5rem;
padding-bottom: 0.9rem;
border-top-left-radius: 0.5rem;
border-top-right-radius: 0.5rem;
position: ${props => props.isNewSession ? 'relative' : 'fixed'};
Expand Down

0 comments on commit 8401d67

Please sign in to comment.