Skip to content

Commit

Permalink
fixed action issue in button style in glassview
Browse files Browse the repository at this point in the history
  • Loading branch information
nadirdeveloper committed Nov 7, 2022
1 parent 2dc3ace commit fc1de1a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
4 changes: 4 additions & 0 deletions src/components/GlassArView/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@
}
.JeelizVTOWidgetContainer {
width: 1000px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.buttonIcon {
display: inline-block;
Expand Down
19 changes: 10 additions & 9 deletions src/components/GlassArView/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,16 @@ export function GlassArView(this: any, props: GlassArViewProps) {
<div className='JeelizVTOWidgetContainer' >
<div ref={refPlaceHolder} className='JeelizVTOWidget' style={{ height: isheight, width: iswidth }}>
<canvas ref={refCanvas} className='JeelizVTOWidgetCanvas'></canvas>
<div className='JeelizVTOWidgetButtonContainer'>


<div ref={refLoading} className='JeelizVTOWidgetLoading'>
<div className='JeelizVTOWidgetLoadingText'>
LOADING...
</div>
</div>

</div>
<div className='JeelizVTOWidgetButtonContainer'>
{
adjustMode && (
<div className='JeelizVTOWidgetAdjustNoticeContainer' >
Expand Down Expand Up @@ -147,14 +156,6 @@ export function GlassArView(this: any, props: GlassArViewProps) {
)
}
</div>

<div ref={refLoading} className='JeelizVTOWidgetLoading'>
<div className='JeelizVTOWidgetLoadingText'>
LOADING...
</div>
</div>

</div>
</div>
)
}
Expand Down

0 comments on commit fc1de1a

Please sign in to comment.