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

Web sockets #29

Merged
merged 11 commits into from
Apr 6, 2023
4 changes: 2 additions & 2 deletions client/components/ProgressBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ const ProgressBar = () => {
}, [socket.dataTransferProgressPercent]);

return (
<div className="relative pt-1 w-2/5 ">
<div className="relative pt-1 w-2/5 h-screen">
<div className="flex mb-2 items-center justify-between">
<div>
<span className="text-xs font-semibold inline-block py-1 px-2 uppercase rounded-full text-stone-100 bg-emerald-300">
Task in progress
Migration in progress
</span>
</div>
<div className="text-right">
Expand Down