9 | SORRY :(
10 |
16 |
17 | IDE doesn't support screen widths smaller than 768px at the moment! To give
18 | you an idea why, we've kept every non-responsive piece transparent in the background!
19 |
20 | YUP! Pretty broken. :)
21 |
22 |
23 |
24 | Move to a bigger screen size, fix your aspect ratio or just zoom out to sort this issue.
25 | IDE's shouldn't have mobile views in the first place but we're working on it for you. Hope
26 | you had fun interacting with a fellow dev who wanted to vent.
27 |
28 | Thanks for hearing me out! HAPPY CODING. :)
29 |
30 |
31 | );
32 | };
33 |
--------------------------------------------------------------------------------
/src/components/editor/io-nav/index.tsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { useSelector } from 'react-redux';
3 | import { getReturnCode, getStdout } from '~/store/getters/editor';
4 | import { getActivePanel } from '~/store/getters/ui';
5 | import { IO_PANEL, SAVELIST_PANEL } from '~/constants/panel';
6 |
7 | import { InputFragment } from './input-fragment';
8 | import { OutputFragment } from './output-fragment';
9 | import Savelist from './savelist';
10 |
11 | enum IOTabs {
12 | INPUT,
13 | CONSOLE,
14 | }
15 |
16 | export interface IONavProps {
17 | className: string;
18 | }
19 |
20 | export const IONav: React.FC