Skip to content

Commit

Permalink
Merge pull request #107 from jennydo/minor-adjustments
Browse files Browse the repository at this point in the history
Some minor fixes
  • Loading branch information
gsthanhnguyen authored Jul 5, 2024
2 parents 981d54e + db264c4 commit b72d473
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions src/components/Home/Home.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@
font-size: 1.3rem;
text-align: center;
margin-top: 0;
padding-top: 25px;
}
4 changes: 2 additions & 2 deletions src/components/Home/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ const Home = () => {
<div className="app-intro__container">
<h1>Bridging gaps, healing minds</h1>
<p className="app-intro__description">
❤️‍🩹Welcome to a gentle space for your heart and mind. Share your story
Welcome to a gentle space for your heart and mind. Share your story
with a caring listener or enjoy a soothing meditation made just for
you. Here, healing unfolds at your own pace.❤️‍🩹
you. Here, healing unfolds at your own pace ❤️‍🩹
</p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/NewsFeed/Posts/NormalPost.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ const NormalPost = ({ post }) => {
</GridItem>

<GridItem w="100%" h="100%" onClick={handleFlip}>
<Text mt={3} fontSize={"xl"}>
<Text mt={3} fontSize={"xl"} marginTop={7}>
From: {username}
</Text>
{content.length > preview.length ? (
Expand Down
1 change: 1 addition & 0 deletions src/components/NewsFeed/Prompts/Prompt.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { Icon } from "@chakra-ui/react";
import axios from "axios";
import { PromptResponsesContext } from "../../../context/PromptResponseContext";
import PromptModal from "./PromptModal";
import { StyledButton } from '../../../styles/components/StyledComponents';

const Prompt = () => {
const { dispatch } = useContext(PromptResponsesContext);
Expand Down
4 changes: 2 additions & 2 deletions src/pages/NewsFeed.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ const NewsFeed = () => {
<Tabs align="center" isFitted mt={5}>
<TabList>
<Tab p={0} h={10}>
<Text fontSize={20}>Catch a Postcard flying in the Sky</Text>
<Text fontSize={20}><b>Catch a Postcard flying in the Sky</b></Text>
</Tab>
<Tab p={0} h={10}>
<Text fontSize={20}>The Waterfall of Messages</Text>
<Text fontSize={20}><b>The Waterfall of Messages</b></Text>
</Tab>
</TabList>

Expand Down

0 comments on commit b72d473

Please sign in to comment.