Random updates

This commit is contained in:
Bill 2021-09-24 04:49:20 -04:00
parent 1c879db9d9
commit 27ef76610b
4 changed files with 9 additions and 3 deletions

View File

@ -26,8 +26,8 @@ $avatar-editor-height: 374px;
$catalog-width: 620px;
$catalog-height: 400px;
$inventory-width: 485px;
$inventory-height: 315px;
$inventory-width: 528px;
$inventory-height: 320px;
$navigator-width: 400px;
$navigator-height: 420px;

View File

@ -125,7 +125,7 @@ export const App: FC<{}> = props =>
}
return (
<div className="nitro-app">
<div className="nitro-app overflow-hidden">
<div id="nitro-alerts-container" />
{ (!isReady || isError) && <LoadingView isError={ isError } message={ message } /> }
<TransitionAnimation type={ TransitionAnimationTypes.FADE_IN } inProp={ (isReady && !isError) } timeout={ 300 }>

View File

@ -47,6 +47,8 @@ export function DispatchMouseEvent(roomId: number, canvasId: number, event: Mous
break;
case MouseEventType.MOUSE_UP:
break;
case MouseEventType.RIGHT_CLICK:
break;
default: return;
}

View File

@ -14,4 +14,8 @@ body {
image-rendering: -moz-crisp-edges;
}
img {
object-fit: none;
}
@import './App';