diff --git a/ISD-conference-web-app-frontend/src/app/pages/home-page/home-page.component.html b/ISD-conference-web-app-frontend/src/app/pages/home-page/home-page.component.html index 58fb5fa..7de0374 100644 --- a/ISD-conference-web-app-frontend/src/app/pages/home-page/home-page.component.html +++ b/ISD-conference-web-app-frontend/src/app/pages/home-page/home-page.component.html @@ -63,6 +63,7 @@
+
diff --git a/ISD-conference-web-app-frontend/src/app/pages/home-page/home-page.component.scss b/ISD-conference-web-app-frontend/src/app/pages/home-page/home-page.component.scss index 2477c42..8eb84cc 100644 --- a/ISD-conference-web-app-frontend/src/app/pages/home-page/home-page.component.scss +++ b/ISD-conference-web-app-frontend/src/app/pages/home-page/home-page.component.scss @@ -3,7 +3,6 @@ .home-page-content-wrapper { padding-top: $content-gap-from-nav; - .conference-topics-list { list-style-type: initial; margin-left: $default-gap*3; @@ -36,3 +35,20 @@ } } } +img{ + width: $icon-width; +} +.linkedin{ + width: $icon-div-width; + height: $icon-div-width; + margin-right: 0; + margin-left: auto; + position: relative; + bottom: 10%; +} + +@media screen and (max-width: $changeHomePageLayoutTreshold) { + .linkedin { + margin-bottom: 1em; + } +} \ No newline at end of file diff --git a/ISD-conference-web-app-frontend/src/app/styles/isd-variables.scss b/ISD-conference-web-app-frontend/src/app/styles/isd-variables.scss index aab24c2..114cf73 100644 --- a/ISD-conference-web-app-frontend/src/app/styles/isd-variables.scss +++ b/ISD-conference-web-app-frontend/src/app/styles/isd-variables.scss @@ -28,5 +28,6 @@ $default-gap: 1rem; $content-gap-from-nav: 5rem; $max-content-width: 1200px; $changeHomePageLayoutTreshold: 1100px; -$content-width: min($max-content-width, 95%) - +$content-width: min($max-content-width, 95%); +$icon-width: 3rem; +$icon-div-width: 3rem; \ No newline at end of file diff --git a/ISD-conference-web-app-frontend/src/assets/LinkedIn_icon.svg.webp b/ISD-conference-web-app-frontend/src/assets/LinkedIn_icon.svg.webp new file mode 100644 index 0000000..56731fe Binary files /dev/null and b/ISD-conference-web-app-frontend/src/assets/LinkedIn_icon.svg.webp differ