Skip to content

Commit 343939c

Browse files
committed
Merge branch 'main' of https://github.com/https-sam/algorithm-visualizer into functional_board
2 parents 23b01fd + 3fa3c51 commit 343939c

File tree

6 files changed

+15
-5
lines changed

6 files changed

+15
-5
lines changed

public/_redirects 2

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/* /index.html 200

public/robots 2.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# https://www.robotstxt.org/robotstxt.html
2+
User-agent: *
3+
Disallow:

src/App.css

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ html, body, * {
1010

1111
body {
1212
margin: 0;
13-
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
14-
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
15-
sans-serif;
13+
font-family: Open Sans, Helvetica,Arial, sans-serif;
1614
-webkit-font-smoothing: antialiased;
1715
-moz-osx-font-smoothing: grayscale;
1816
}

src/components/Canvas/Canvas.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Canvas extends Component {
1616
const MARGIN = CONSTANTS.margin;
1717
const SCREEN_WIDTH = window.innerWidth;
1818
const BAR_WIDTH = Math.floor((SCREEN_WIDTH - (MARGIN*arrayLength)) / arrayLength);
19-
const MARGIN_BTW_CANVAS_AND_OPTIONS = 146;
19+
const MARGIN_BTW_CANVAS_AND_OPTIONS = 147;
2020
const CANVAS_HEIGHT = window.innerHeight - CONSTANTS.OFFSET + MARGIN_BTW_CANVAS_AND_OPTIONS +"px";
2121
const FONT_SIZE = Math.floor(BAR_WIDTH * 0.4);
2222
const PINK = "#ff595e";

src/components/Page/partial/Navbar/navbar.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
@import url('https://fonts.googleapis.com/css2?family=Encode+Sans+SC:wght@600&family=Fira+Code:wght@600&display=swap');
33
.navbar {
44
/* background: linear-gradient(90deg, rgb(28, 27, 27) 0%, rgb(26, 23, 23) 100%); */
5-
min-height: 55px;
5+
height: 60px;
66
display: flex;
77
justify-content: center;
88
align-items: center;

src/index 2.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import React from "react";
2+
import { createRoot } from 'react-dom/client';
3+
4+
import App from "./App";
5+
const container = document.getElementById("root");
6+
7+
const root = createRoot(container);
8+
root.render(<App />);

0 commit comments

Comments
 (0)