diff --git a/components/01_Atoms/image/_image.scss b/components/01_Atoms/image/_image.scss
index a90c54e..9581669 100644
--- a/components/01_Atoms/image/_image.scss
+++ b/components/01_Atoms/image/_image.scss
@@ -1,4 +1,6 @@
.LP-Image{
- max-width:100%;
- max-height:100%;
+ object-fit: cover;
+ width: 100%;
+ height: auto;
+ vertical-align: top;
}
\ No newline at end of file
diff --git a/components/01_Atoms/image/image.config.json b/components/01_Atoms/image/image.config.json
index 4eb7c3f..6696d6f 100644
--- a/components/01_Atoms/image/image.config.json
+++ b/components/01_Atoms/image/image.config.json
@@ -1,3 +1,5 @@
{
-
+ "context":{
+ "source": "/images/photo_2020-05-02_18-11-21.jpg"
+ }
}
\ No newline at end of file
diff --git a/components/01_Atoms/image/image.hbs b/components/01_Atoms/image/image.hbs
index 85682c7..ea9d8b5 100644
--- a/components/01_Atoms/image/image.hbs
+++ b/components/01_Atoms/image/image.hbs
@@ -1,23 +1 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/components/01_Atoms/logo/logo.hbs b/components/01_Atoms/logo/logo.hbs
index 13716f5..34fd648 100644
--- a/components/01_Atoms/logo/logo.hbs
+++ b/components/01_Atoms/logo/logo.hbs
@@ -1,3 +1,5 @@
-
+
+
+
\ No newline at end of file
diff --git a/components/02_Molecules/_molecules.scss b/components/02_Molecules/_molecules.scss
index 7219798..600a6b0 100644
--- a/components/02_Molecules/_molecules.scss
+++ b/components/02_Molecules/_molecules.scss
@@ -1,3 +1,4 @@
@import 'textSection/textSection';
@import 'placeTeaser/placeTeaser';
-@import 'tagList/tagList';
\ No newline at end of file
+@import 'tagList/tagList';
+@import 'navigation/navigation';
\ No newline at end of file
diff --git a/components/02_Molecules/navigation/_navigation.scss b/components/02_Molecules/navigation/_navigation.scss
new file mode 100644
index 0000000..a3398dc
--- /dev/null
+++ b/components/02_Molecules/navigation/_navigation.scss
@@ -0,0 +1,46 @@
+.LP-Menu{
+ .LP-Menu__List {
+ list-style-type: none;
+ display: flex;
+ flex-direction: row;
+ justify-content: space-between;
+ padding: 0;
+ margin: 0;
+ }
+
+ .LP-Menu__Item {
+ padding: 15px 0;
+ margin: 0;
+ width: 100px;
+ text-align: center;
+ background-color: transparent;
+ }
+
+ .LP-Link__Text {
+ color: $-grey;
+ font-weight: bold;
+ text-shadow: 0px 0px 20px white;
+ &:hover{
+ color: $-wine-red;
+ }
+ }
+}
+
+@media(max-width: $-viewport-medium){
+ .LP-Menu{
+
+ .LP-Menu__List{
+ display: flex;
+ flex-direction: row;
+ justify-content: flex-start
+ }
+ }
+}
+
+@media(max-width: $-viewport-extra-small){
+ .LP-Menu{
+ .LP-Menu__List {
+ justify-content: space-between;
+ }
+ }
+}
\ No newline at end of file
diff --git a/components/03_Organisms/navigation/navigation.config.json b/components/02_Molecules/navigation/navigation.config.json
similarity index 100%
rename from components/03_Organisms/navigation/navigation.config.json
rename to components/02_Molecules/navigation/navigation.config.json
diff --git a/components/03_Organisms/navigation/navigation.hbs b/components/02_Molecules/navigation/navigation.hbs
similarity index 100%
rename from components/03_Organisms/navigation/navigation.hbs
rename to components/02_Molecules/navigation/navigation.hbs
diff --git a/components/03_Organisms/_organisms.scss b/components/03_Organisms/_organisms.scss
index 7c51b0a..45a92ab 100644
--- a/components/03_Organisms/_organisms.scss
+++ b/components/03_Organisms/_organisms.scss
@@ -1,5 +1,4 @@
@import 'header/header';
-@import 'navigation/navigation';
@import 'placeGrid/placeGrid';
@import 'placeList/placeList';
@import 'linkList/linkList';
diff --git a/components/03_Organisms/header/_header.scss b/components/03_Organisms/header/_header.scss
index 2add0b5..86bba8b 100644
--- a/components/03_Organisms/header/_header.scss
+++ b/components/03_Organisms/header/_header.scss
@@ -3,14 +3,37 @@
align-items: center;
justify-content: space-between;
margin-bottom: 70px;
-
+ height: 60px;
+
&__Logo {
- max-width: 300px;
- width: 35%;
- object-fit:contain;
+ height: 60px;
+ margin: 25px;
+ object-fit:cover;
+ max-height: 100%;
+ overflow: hidden;
+
+ .LP-Image{
+ height: 60px;
+ }
+ }
+}
+
+@media(max-width: $-viewport-medium){
+ .LP-Header__Logo{
+ width: 60px;
+ .LP-Image{
+ object-position: 0 0;
+ object-fit: cover;
+ }
+ }
+}
+
+@media(max-width: $-viewport-extra-small){
+ .LP-Header__Logo{
+ display: none;
}
- .LP-Header__Logo{
- margin: 25px;
+ .LP-Header__Navigation{
+ width: 100%;
}
}
\ No newline at end of file
diff --git a/components/03_Organisms/header/header.hbs b/components/03_Organisms/header/header.hbs
index b7b40e5..d103bc1 100644
--- a/components/03_Organisms/header/header.hbs
+++ b/components/03_Organisms/header/header.hbs
@@ -1,6 +1,6 @@