Skip to content
This repository has been archived by the owner on Jul 27, 2024. It is now read-only.

Commit

Permalink
npx prettier --write
Browse files Browse the repository at this point in the history
  • Loading branch information
noahgsolomon committed Aug 26, 2023
1 parent ff7526e commit 8b9929b
Show file tree
Hide file tree
Showing 9 changed files with 511 additions and 430 deletions.
3 changes: 2 additions & 1 deletion src/common/Components/DeploymentBar/DeploymentBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ const DeploymentBar: FC<{
style={animate}
className={`fixed left-1/2 z-50 transform rounded-xl border-2 border-black bg-blue-500 px-3 text-lg text-white md:px-6 md:py-3 md:text-2xl md:font-bold`}
>
Deployment successful! Please wait 5 minutes for deployment to propagate...
Deployment successful! Please wait 5 minutes for deployment to
propagate...
<a
className={
"px-1 font-bold underline transition-all hover:text-yellow-300"
Expand Down
315 changes: 178 additions & 137 deletions src/common/Components/ModeButtons/ModeButtons.tsx

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/pages/Contact/ContactMain.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ const ContactMain: FC<{
<div className="container mx-auto my-20 max-w-screen-lg px-5">
<div className="wrapper items-center gap-10 md:flex">
<animated.div
style={animationProps}
className="content md:min-w-[25rem] mx-auto max-w-lg md:mx-0"
style={animationProps}
className="content mx-auto max-w-lg md:mx-0 md:min-w-[25rem]"
>
{headerOneEdit ? (
<textarea
Expand Down
6 changes: 4 additions & 2 deletions src/pages/Dashboard/DashboardMain.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@ const DashboardMain: React.FC<{
/>
) : (
<h1
className="font-extra-bold hover:opacity-50 cursor-pointer mx-auto max-w-[15ch] text-center text-4xl leading-snug transition-all md:text-5xl md:leading-relaxed lg:mx-0 lg:text-left xl:text-6xl xl:leading-normal" onClick={() => setHeaderOneEdit(true)}
className="font-extra-bold mx-auto max-w-[15ch] cursor-pointer text-center text-4xl leading-snug transition-all hover:opacity-50 md:text-5xl md:leading-relaxed lg:mx-0 lg:text-left xl:text-6xl xl:leading-normal"
onClick={() => setHeaderOneEdit(true)}
>
{pageData.header_one}
</h1>
Expand Down Expand Up @@ -174,7 +175,8 @@ const DashboardMain: React.FC<{
/>
) : (
<p
className="mx-auto max-w-[35ch] hover:opacity-50 cursor-pointer text-center text-base opacity-60 transition-all lg:mx-0 lg:text-left xl:max-w-[50ch]" onClick={() => setDescriptionOneEdit(true)}
className="mx-auto max-w-[35ch] cursor-pointer text-center text-base opacity-60 transition-all hover:opacity-50 lg:mx-0 lg:text-left xl:max-w-[50ch]"
onClick={() => setDescriptionOneEdit(true)}
>
{pageData.description_one}
</p>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Home/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const Home: FC = () => {
portfolio websites...
</p>
</animated.div>
<animated.div style={imageAnimation} className={'mx-auto'}>
<animated.div style={imageAnimation} className={"mx-auto"}>
<div className="relative">
<a
href="https://walter.codefoli.com"
Expand Down
3 changes: 1 addition & 2 deletions src/preview/common/Components/Header/HeaderP.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import { Link } from "react-router-dom";
import {FC} from "react";
import { FC } from "react";

const HeaderP: FC = () => {

return (
<header
className={`relative z-40 mx-5 flex items-center justify-center py-5 font-bold transition-all ease-linear md:flex-row`}
Expand Down
Loading

0 comments on commit 8b9929b

Please sign in to comment.