This commit is contained in:
Bill 2021-04-23 21:05:56 -04:00
parent 0cc1c1d278
commit c2692249f2
4 changed files with 14 additions and 1 deletions

View File

@ -1,5 +1,5 @@
{
"socket.url": "wss://arcturus.habborw.com",
"socket.url": "wss://ws.nitrots.co:2096",
"asset.url": "https://nitro-assets.hrw.pw",
"image.library.url": "https://swf.hrw.pw/c_images/",
"external.samples.url": "https://swf.hrw.pw/dcr/hof_furni/mp3/sound_machine_sample_%sample%.mp3",

View File

@ -263,6 +263,10 @@ $box-shadow-inset: inset 0px 0px 0px 2px rgba($white, 0.1) !default;
$box-shadow-outset: 0px 2px 0px rgba($black, 0.45) !default;
$box-shadow: $box-shadow-outset, $box-shadow-inset !default;
$box-shadow-right-inset: inset -2px 0px 0px 0px rgba($white, 0.1) !default;
$box-shadow-right-outset: 0px 0px 0px 2px rgba($black, 0.45) !default;
$box-shadow-right: $box-shadow-right-outset, $box-shadow-right-inset !default;
$box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;
$component-active-color: $white !default;

View File

@ -23,6 +23,13 @@ ul {
}
}
.cursor-pointer {
&:hover {
cursor: pointer;
}
}
.pointer-events-none {
pointer-events: none;
}

View File

@ -43,6 +43,8 @@ export function DraggableWindow(props: DraggableWindowProps): JSX.Element
useEffect(() =>
{
if(!elementRef) return;
const element = elementRef.current;
currentWindows.push(element);