fullscreen button icon
This commit is contained in:
+6
-1
@@ -3,6 +3,7 @@ import { getFeatures } from '@ijl/cli';
|
||||
|
||||
import logo from '../assets/logo.svg';
|
||||
import arrow from '../assets/36-arrow-right.svg';
|
||||
import fullScreen from '../assets/fullscreen.svg';
|
||||
|
||||
import { Keyboard } from '../components/keyboard';
|
||||
|
||||
@@ -233,7 +234,11 @@ export const MainPage = () => {
|
||||
|
||||
return (
|
||||
<MainWrapper>
|
||||
{fullScreenFeature && !isFull && <FullScreenButton onClick={handleFullScreen}>На весь экран</FullScreenButton>}
|
||||
{fullScreenFeature && !isFull && (
|
||||
<FullScreenButton onClick={handleFullScreen}>
|
||||
<img src={fullScreen} />
|
||||
</FullScreenButton>
|
||||
)}
|
||||
<LogoImg src={logo} />
|
||||
{/* <Start /> */}
|
||||
{!showStart && <Input onStart={() => setShowStart(true)} />}
|
||||
|
||||
Reference in New Issue
Block a user