mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-26 23:50:52 +01:00
Updates
This commit is contained in:
parent
0cc1c1d278
commit
c2692249f2
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"socket.url": "wss://arcturus.habborw.com",
|
"socket.url": "wss://ws.nitrots.co:2096",
|
||||||
"asset.url": "https://nitro-assets.hrw.pw",
|
"asset.url": "https://nitro-assets.hrw.pw",
|
||||||
"image.library.url": "https://swf.hrw.pw/c_images/",
|
"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",
|
"external.samples.url": "https://swf.hrw.pw/dcr/hof_furni/mp3/sound_machine_sample_%sample%.mp3",
|
||||||
|
@ -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-outset: 0px 2px 0px rgba($black, 0.45) !default;
|
||||||
$box-shadow: $box-shadow-outset, $box-shadow-inset !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;
|
$box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;
|
||||||
|
|
||||||
$component-active-color: $white !default;
|
$component-active-color: $white !default;
|
||||||
|
@ -23,6 +23,13 @@ ul {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.cursor-pointer {
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.pointer-events-none {
|
.pointer-events-none {
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
@ -43,6 +43,8 @@ export function DraggableWindow(props: DraggableWindowProps): JSX.Element
|
|||||||
|
|
||||||
useEffect(() =>
|
useEffect(() =>
|
||||||
{
|
{
|
||||||
|
if(!elementRef) return;
|
||||||
|
|
||||||
const element = elementRef.current;
|
const element = elementRef.current;
|
||||||
|
|
||||||
currentWindows.push(element);
|
currentWindows.push(element);
|
||||||
|
Loading…
Reference in New Issue
Block a user