feat(web): tailwind css (#1147)

This commit is contained in:
Aman Harwara
2022-06-28 02:50:52 +05:30
committed by GitHub
parent 0ead805412
commit b80038f607
201 changed files with 1824 additions and 2699 deletions

View File

@@ -18,31 +18,32 @@ class SyncResolutionMenu extends PureComponent<Props> {
override render() {
return (
<div className="sn-component">
<div id="sync-resolution-menu" className="sk-panel sk-panel-right">
<div className="sk-panel-header">
<div className="sk-panel-header-title">Out of Sync</div>
<a onClick={this.close} className="sk-a info close-button">
<div
id="sync-resolution-menu"
className="flex flex-col mt-4 min-w-[300px] max-h-[85vh] absolute right-0 left-[inherit] bottom-[40px] z-footer-bar-item-panel bg-default border border-solid border-border shadow-main"
>
<div className="flex-shrink-0 flex justify-between items-center px-6 py-3 border-b border-solid border-border bg-contrast text-text">
<div className="font-medium text-base">Out of Sync</div>
<a onClick={this.close} className="text-info font-bold text-sm">
Close
</a>
</div>
<div className="sk-panel-content">
<div className="sk-panel-section">
<div className="sk-panel-row sk-p">
<div className="flex-grow h-full overflow-scroll overflow-y-auto overflow-x-auto p-6 text-sm leading-tight">
<div className="flex flex-col">
<div className="mb-3.5">
We've detected that the data in the current application session may not match the data on the server. An
attempt was made to auto-resolve the issue, but it was unable to reconcile the differences.
</div>
<div className="sk-p sk-panel-row">
<div className="sk-p sk-panel-row mb-3.5">
<div className="sk-panel-column">
<strong className="sk-panel-row">Option 1 Restart Application:</strong>
<div className="sk-p">
Quit the application and re-open it. Sometimes, this may resolve the issue.
</div>
<div className="mb-2 font-bold">Option 1 Restart Application:</div>
<div>Quit the application and re-open it. Sometimes, this may resolve the issue.</div>
</div>
</div>
<div className="sk-p sk-panel-row">
<div className="sk-panel-column">
<strong className="sk-panel-row">Option 2 Sign Out and Back In:</strong>
<div className="sk-p">
<div className="mb-2 font-bold">Option 2 Sign Out and Back In:</div>
<div>
Sign out of your account, then sign back in. This will ensure your data is consistent with the
server. Be sure to download a backup of your data before doing so.
</div>