Skip to content

Commit

Permalink
Fix/UI support sync (#229)
Browse files Browse the repository at this point in the history
* fix for support ui changes

* fix sync and support ui issues

* fix for common ui
  • Loading branch information
sijumoncy authored Nov 21, 2023
1 parent 905a991 commit 4235e33
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
6 changes: 3 additions & 3 deletions renderer/src/components/Sync/Sync.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@ export default function Sync() {
<ProjectContextProvider>
<ReferenceContextProvider>
<ProjectsLayout>
<div className="grid grid-cols-2 gap-2 bg-gray-50 h-full">
<div className="grid grid-cols-2 gap-2 bg-gray-50 h-full ">
{/* local projecr side */}
<div className="bg-white border-x border-gray-200 h-full">
<div className="bg-white border-x border-gray-200 h-screen ">
<div className="flex justify-between items-center p-3 px-5 uppercase tracking-wider shadow-sm border-b border-gray-200">
{/* <span className="font-semibold">Local Projects</span> */}
<span className="font-semibold">{t('label-prj-on-my-computer')}</span>
Expand Down Expand Up @@ -204,7 +204,7 @@ export default function Sync() {
</div>

{/* cloud project side */}
<div className="bg-white border-x border-gray-200">
<div className="bg-white border-x border-gray-200 h-screen">
<div className="flex justify-between items-center px-5 uppercase tracking-wider shadow-sm border-b border-gray-200">
<span className="font-semibold">{t('label-prj-on-cloud')}</span>

Expand Down
17 changes: 9 additions & 8 deletions renderer/src/layouts/editor/AboutModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,21 +211,21 @@ export default function AboutModal(props) {
<h5 className="text-xs font-bold">Ask your Queries</h5>
</div>
<ul className="text-xs">
<li>Write the steps - how you faced the issue</li>
<li>Add relevant screenshots</li>
<li>Add specific suggestions - if you have any</li>
<li>Tell us in detail about the issue you faced.</li>
<li>Include relevant screenshots.</li>
<li>Add suggestions if you have any.</li>
</ul>
</div>

<div className="flex justify-center gap-4 items-center ">
<ul className="text-xs">
<li>Feautre : Describe your idea</li>
<span className="ml-1">How it will be beneficail for the users</span>
<li>Give your suggestion for new features &</li>
<span className="ml-1">how you think they can benefit others</span>
<li>Feedback</li>
</ul>
<div className="flex flex-col gap-2 items-center">
<ReplyIcon className="w-12 h-12 fill-primary " />
<h5 className="text-xs font-bold">Submit your suggessions</h5>
<h5 className="text-xs font-bold">Submit your suggestions</h5>
</div>
</div>
</div>
Expand Down Expand Up @@ -278,9 +278,10 @@ export default function AboutModal(props) {
</div>

<p className="text-sm text-gray-700 ">
<span className="font-semibold pr-1 text-primary">Thank you for your input!</span>
<span className="font-semibold pr-1 text-primary">Thank you for your input</span>
.
{' '}
We value it. Our devoted crew is working hard to provide a seamless Scribe experience.
It is greatly appreciated. Our dedicated team is working continuously to offer a smooth Scribe experience.
</p>

</>
Expand Down

0 comments on commit 4235e33

Please sign in to comment.