Skip to content

Commit

Permalink
ui fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
whoisanku committed Feb 28, 2023
1 parent 351edf5 commit 543dfc0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Components/HeartOperation.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ const HeartOperation = () => {
</div>
</div>
{/* Submit Button */}
<div className="flex justify-between items-center mt-[2.7rem] mr-1">
<div className="flex justify-between items-center mt-[2.5rem] mr-1">
<div className="lato"></div>
<div className="flex items-center space-x-5">
<button
Expand Down
2 changes: 1 addition & 1 deletion src/Components/LoggedIn.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const LoggedIn = ({
) : (
<div>
{!submit && (
<div className="w-full grid grid-cols-3 gap-10 mt-20 px-5 pb-2 rounded-lg">
<div className="w-full grid grid-cols-3 gap-10 mt-20 px-5 rounded-lg">
<button
onClick={() => setActiveTab("post")}
className={`select-none
Expand Down
10 changes: 5 additions & 5 deletions src/Components/PostOperation.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ const PostOperation = ({ submit, setSubmit }) => {
/>
</div>
</div>
<div className="mt-3">
<div className="mt-2">
<EmbeddBtn
visibility={textBoxActive2}
changeData={setEmbedText}
Expand All @@ -279,9 +279,9 @@ const PostOperation = ({ submit, setSubmit }) => {
/>
</div>
{/* btn start here */}
<div className="buttons px-5 flex justify-between">
<div className="px-5 pb-2 flex justify-between">
{/* left buttons start here */}
<div className="left-buttons -space-x-5 flex">
<div className="-space-x-5 flex">
{/* img upload btn start here */}
<div className="img-upload">
<button
Expand Down Expand Up @@ -344,10 +344,10 @@ const PostOperation = ({ submit, setSubmit }) => {
</div>
</div>
{/* right buttons start here */}
<div className="right-button">
<div>
<button
onClick={handleSubmitPost}
className={`select-none btn focus:outline-none ${
className={`select-none focus:outline-none ${
Dark
? "bigbtn-dark hover:border-[#ff7521] "
: "bigbtn bg-[#efefef]"
Expand Down
2 changes: 1 addition & 1 deletion src/Components/TipOperation.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ const TipOperations = () => {
</div>
</div>
{/* Submit Button & Calculations */}
<div className="flex justify-between items-center mt-3">
<div className="flex justify-between items-center mt-2">
<div className="lato"></div>
<div className="flex items-center space-x-5">
<div className="lato select-none">
Expand Down

0 comments on commit 543dfc0

Please sign in to comment.