Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/UI support sync #229

Merged
merged 3 commits into from
Nov 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions renderer/src/components/Sync/Sync.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,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 @@ -197,7 +197,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
Loading