Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Delete legacy mobile UI - Fixes #2557 #2559

Merged
merged 4 commits into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ MAILGUN_KEY=<your-mailgun-api-key>
ML5_LIBRARY_USERNAME=ml5
[email protected]
ML5_LIBRARY_PASS=helloml5
MOBILE_ENABLED=true
MONGO_URL=mongodb://localhost:27017/p5js-web-editor
PORT=8000
PREVIEW_PORT=8002
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react';
import PropTypes from 'prop-types';
import styled from 'styled-components';
import Button from '../../common/Button';
import { remSize } from '../../theme';
import Button from './Button';
import { remSize } from '../theme';

const ButtonWrapper = styled(Button)`
width: ${remSize(48)};
Expand Down
2 changes: 1 addition & 1 deletion client/components/Dropdown.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
import PropTypes from 'prop-types';
import styled from 'styled-components';
import { remSize, prop } from '../theme';
import IconButton from './mobile/IconButton';
import IconButton from '../common/IconButton';

const DropdownWrapper = styled.ul`
background-color: ${prop('Modal.background')};
Expand Down
56 changes: 0 additions & 56 deletions client/components/mobile/ActionStrip.jsx

This file was deleted.

30 changes: 0 additions & 30 deletions client/components/mobile/Explorer.jsx

This file was deleted.

44 changes: 0 additions & 44 deletions client/components/mobile/FloatingNav.jsx

This file was deleted.

17 changes: 0 additions & 17 deletions client/components/mobile/Footer.jsx

This file was deleted.

121 changes: 0 additions & 121 deletions client/components/mobile/Header.jsx

This file was deleted.

12 changes: 0 additions & 12 deletions client/components/mobile/IDEWrapper.jsx

This file was deleted.

45 changes: 0 additions & 45 deletions client/components/mobile/MobileScreen.jsx

This file was deleted.

Loading
Loading