diff --git a/src/App.js b/src/App.js
index 851fbb4..ab15b29 100644
--- a/src/App.js
+++ b/src/App.js
@@ -2,7 +2,7 @@ import React, {useEffect, useState} from 'react';
import NewPostForm from './components/NewPostForm';
import './App.scss';
import {FontAwesomeIcon} from "@fortawesome/react-fontawesome";
-import {faTimes} from "@fortawesome/free-solid-svg-icons";
+import {faPenToSquare, faRotate, faTimes} from "@fortawesome/free-solid-svg-icons";
import {postApi} from "./api/posts.api";
import {locationUtils} from "./utils/location";
import Post from "./components/Post";
@@ -62,12 +62,19 @@ const App = () => {
return (
-
+
+
+
+
+
SWA - Jodel
-
-
-
- {posts.map(post => )}
+
+
+ {posts.map(post => )}
{selectedPost && (
diff --git a/src/App.scss b/src/App.scss
index fb90cc7..e63963d 100644
--- a/src/App.scss
+++ b/src/App.scss
@@ -267,11 +267,26 @@ button {
color: #ff9908;
}
-.logout {
- margin-left: 75%;
- width: 25%
-}
-
textarea {
resize: none;
+}
+
+.nav-bar {
+ display: flex;
+ width: 100%;
+ flex-direction: row;
+}
+
+.nav-button {
+ height: 3em;
+ width: 3em;
+}
+
+.nav-space {
+ margin-left: auto;
+}
+
+.logout {
+ margin-left: 0.5em;
+ width: 25%
}
\ No newline at end of file