File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111.page {
1212 font-family : var (--font-geist-mono );
1313}
14-
1514.BigTextConfig {
1615 display : flex;
1716 flex-direction : column;
2827 ". . ."
2928 ". delete ." ;
3029}
31-
30+ .hidden {
31+ display : none;
32+ }
3233.BigTextConfig--qr {
3334 grid-area : qr;
3435}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export default function Page() {
1313 const [ orientation , setOrientation ] = useState < "horizontal" | "vertical" | undefined > ( "horizontal" ) ;
1414 const [ isFullscreen , setFullscreen ] = useState ( false ) ;
1515 return ( < div className = { styles . page } >
16- < div className = { styles . BigTextConfig } >
16+ < div className = { [ styles . BigTextConfig , isFullscreen ? styles . hidden : undefined ] . filter ( item => item ) . join ( " " ) } >
1717 < LargeTextInputComponent
1818 value = { text }
1919 onChange = { ( data : string ) => {
You can’t perform that action at this time.
0 commit comments