Skip to content

Commit

Permalink
fix: update position of activity box
Browse files Browse the repository at this point in the history
  • Loading branch information
alberto-abarzua committed Nov 22, 2023
1 parent 2412495 commit 7b855b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/general/tutorial/ActivityBox.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const ActivityBox = () => {

return (
<div
className={`absolute left-1/2 top-2 z-20 flex w-1/4 transform flex-col justify-center rounded-md border border-gray-700 bg-purple-700 bg-opacity-90 p-4 text-white transition-all duration-500 ${
className={`absolute left-[55%] top-2 z-20 flex w-[28%] transform flex-col justify-center rounded-md border border-gray-700 bg-purple-700 bg-opacity-90 p-4 text-white transition-all duration-500 ${
isVisible ? 'translate-y-0 opacity-100' : '-translate-y-full opacity-0'
}`}
>
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/views/MainView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ export default function Home() {
<ActionsPanel></ActionsPanel>
</div>
<div className="relative box-border flex h-full w-full flex-col items-start justify-start bg-slate-50 lg:w-6/12">
<div className="relative flex h-[40%] w-full">
<div className="relative flex h-[45%] w-full">
<ArmSimulation></ArmSimulation>
<div className="absolute right-0">
<ArmStatus></ArmStatus>
</div>
</div>
<div className="relative flex h-[60%] w-full">
<div className="relative flex h-[55%] w-full">
<ControlPanel></ControlPanel>
</div>
</div>
Expand Down

0 comments on commit 7b855b8

Please sign in to comment.