Skip to content
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
2 changes: 1 addition & 1 deletion src/components/BodyTeleop/ControlsBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const btnInactive = `${btnBase} bg-white/10 text-white/60`;
const btnActive = `${btnBase} bg-white/30 text-white`;

const controlsGroupBase = 'z-10 flex flex-row items-stretch gap-3.5 rounded-[20px] p-4 bg-glass-dark';
const controlsGroupLandscape = 'absolute bottom-3.5 left-3';
const controlsGroupLandscape = 'absolute bottom-3 left-3';
const controlsGroupPortrait = 'relative self-stretch rounded-none shrink-0 justify-between gap-2';

const ControlsBar = ({
Expand Down
2 changes: 1 addition & 1 deletion src/components/BodyTeleop/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ const BodyTeleop = ({ dongleId, device, onClose }) => {
{ started && (
<div
className={isLandscape
? 'absolute bottom-4 right-4 z-10 w-[160px] h-[160px]'
? 'absolute bottom-3 right-3 z-10 w-[160px] h-[160px]'
: 'flex-1 flex items-center justify-center px-4 pb-12 pt-2 min-h-0 overflow-hidden'}
>
<Joystick
Expand Down
Loading