Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
git ignore update
  • Loading branch information
SkalskiP committed Jun 14, 2019
1 parent b85667d commit c809cae
Show file tree
Hide file tree
Showing 15 changed files with 37 additions and 63 deletions.
6 changes: 5 additions & 1 deletion .gitignore
@@ -1,4 +1,8 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# INTELIIJ

.idea/

# CREATE REACT APP

# dependencies
/node_modules
Expand Down
6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/watcherTasks.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 0 additions & 33 deletions src/App.css

This file was deleted.

Empty file added src/App.scss
Empty file.
9 changes: 0 additions & 9 deletions src/App.test.tsx

This file was deleted.

13 changes: 0 additions & 13 deletions src/index.css

This file was deleted.

Empty file added src/index.scss
Empty file.
7 changes: 0 additions & 7 deletions src/logo.svg

This file was deleted.

Empty file added src/settings/_Settings.scss
Empty file.
Empty file added src/views/Editor/Editor.scss
Empty file.
Empty file added src/views/Editor/Editor.tsx
Empty file.
8 changes: 8 additions & 0 deletions src/views/Editor/TopNavigationBar/TopNavigationBar.scss
@@ -0,0 +1,8 @@
@import '../../settings/_Settings';

.TopNavigationBar {
align-self: stretch;
height: $topNavigationBarHeight;
background-color: $darkThemeSecondColor;
box-shadow: 0 0 6px 0 rgba(0,0,0,.2);
}
8 changes: 8 additions & 0 deletions src/views/Editor/TopNavigationBar/TopNavigationBar.tsx
@@ -0,0 +1,8 @@
import React from 'react';
import './TopNavigationBar.scss';

export const TopNavigationBar: React.FC = () => {
return (
<div className="TopNavigationBar"/>
);
};

0 comments on commit c809cae

Please sign in to comment.