💄 add desktop view to gameboy

This commit is contained in:
Chase Manning 2023-09-05 10:33:50 +03:00
commit 8e8cf465ae

View file

@ -10,12 +10,16 @@ const StyledApp = styled.div`
align-items: center;
padding: 5px;
padding-bottom: 28px;
@media (min-width: 768px) {
padding: 5px;
}
`;
const App = () => {
return (
<StyledApp>
<Gameboy />
<Gameboy>meow</Gameboy>
</StyledApp>
);
};