From caaddffd9a2ba8c19fa6b96117078a78d2155e0c Mon Sep 17 00:00:00 2001 From: Shawn Townsend Date: Thu, 26 May 2022 12:22:40 -0400 Subject: [PATCH 1/3] Final touches on styling --- .../src/components/LandingPage.css | 6 +++++- .../src/components/LandingPage.js | 19 ++++++++++--------- immichat-frontend/src/components/Messages.js | 1 - .../src/components/ProfileComponents/Bio.js | 2 ++ .../src/components/RightSideBar.js | 1 + immichat-frontend/src/components/Sidebar.js | 1 - immichat-frontend/src/components/formStuff.js | 2 +- .../src/components/profilecard.css | 18 ++++++++++-------- 8 files changed, 29 insertions(+), 21 deletions(-) diff --git a/immichat-frontend/src/components/LandingPage.css b/immichat-frontend/src/components/LandingPage.css index 03e66e1..7ba71e2 100644 --- a/immichat-frontend/src/components/LandingPage.css +++ b/immichat-frontend/src/components/LandingPage.css @@ -28,6 +28,10 @@ --frames: 62; } +.heart{ + height:20vh; +} + .heart html { min-height: 100vh; display: flex; @@ -143,7 +147,7 @@ overflow: hidden; border-right: 3px solid; font-family: "Poppins"; - font-weight: bold; + font-weight: bold; font-size: 40px; } diff --git a/immichat-frontend/src/components/LandingPage.js b/immichat-frontend/src/components/LandingPage.js index 24182d0..0d62b0c 100644 --- a/immichat-frontend/src/components/LandingPage.js +++ b/immichat-frontend/src/components/LandingPage.js @@ -1,7 +1,7 @@ -import "./LandingPage.css"; -import { Navigate, Link } from "react-router-dom"; -import AuthenticationContext from "../context/AuthenticationContext"; -import React from "react"; +import './LandingPage.css'; +import { Navigate, Link } from 'react-router-dom'; +import AuthenticationContext from '../context/AuthenticationContext'; +import React from 'react'; export default function Mission() { const { user } = React.useContext(AuthenticationContext); @@ -28,7 +28,7 @@ export default function Mission() { to="/" className="navbar-brand" href="/" - style={{ paddingLeft: 150, fontSize: 40 }} + style={{ paddingLeft: 150, fontSize: 35 }} >
Immichat
@@ -48,14 +48,15 @@ export default function Mission() {