Skip to content

Commit

Permalink
fix(pte): update default height of PTE in Form (#6119)
Browse files Browse the repository at this point in the history
* fix(pte): update default height of PTE in Form

* fix(pte): update size to be in em vs px
  • Loading branch information
jtpetty authored Mar 28, 2024
1 parent 3c4d4cf commit 907609d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {ScrollContainer} from '../../../components/scroll'
import {createListName, TEXT_LEVELS} from './text'

export const Root = styled(Card)<{$fullscreen: boolean}>`
height: ${({$fullscreen}) => ($fullscreen ? '100%' : '15em')};
height: ${({$fullscreen}) => ($fullscreen ? '100%' : '19em')};
&:not([hidden]) {
display: flex;
Expand Down

0 comments on commit 907609d

Please sign in to comment.