mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-23 14:40:50 +01:00
Random updates
This commit is contained in:
parent
1c879db9d9
commit
27ef76610b
@ -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;
|
||||
|
@ -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 }>
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -14,4 +14,8 @@ body {
|
||||
image-rendering: -moz-crisp-edges;
|
||||
}
|
||||
|
||||
img {
|
||||
object-fit: none;
|
||||
}
|
||||
|
||||
@import './App';
|
||||
|
Loading…
Reference in New Issue
Block a user