diff --git a/immichat-frontend/src/components/LandingPage.css b/immichat-frontend/src/components/LandingPage.css index 03e66e1..c5cfffb 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; @@ -137,14 +141,13 @@ } .typing-demo { - width: 10ch; + width: 12ch; animation: typing 2s steps(22), blink 0.5s step-end infinite alternate; white-space: nowrap; overflow: hidden; border-right: 3px solid; font-family: "Poppins"; - font-weight: bold; - font-size: 40px; + font-weight: bold; } @keyframes typing { diff --git a/immichat-frontend/src/components/LandingPage.js b/immichat-frontend/src/components/LandingPage.js index 24182d0..067de9a 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: 30 }} >
Immichat
@@ -48,14 +48,15 @@ export default function Mission() {