Skip to content

Commit

Permalink
remove scrolly overflow, refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
glenwid committed Mar 29, 2021
1 parent 8aa200c commit 63084d6
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 5 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/App.tsx → src/components/App.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import './App.css';
import CodeReviewCard from "./components/CodeReviewCard";
import CodeReviewCard from "./CodeReviewCard";

const exampleCode = `
(function someDemo() {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/components/styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const Pre = styled.pre`
text-align: left;
margin: 1em 0;
padding: 0.5em;
overflow: scroll;
overflow: auto;
& .token-line {
line-height: 1.3em;
Expand Down
4 changes: 2 additions & 2 deletions src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import './components/index.css';
import App from './components/App';
import reportWebVitals from './reportWebVitals';

ReactDOM.render(
Expand Down
1 change: 0 additions & 1 deletion src/logo.svg

This file was deleted.

0 comments on commit 63084d6

Please sign in to comment.