ui-soxo-bootstrap-core 2.6.32-dev.0 → 2.6.32-dev.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -83,7 +83,7 @@ function GlobalHeaderContent({ loading, appSettings, children, isConnected, hist
|
|
|
83
83
|
className={`global-header ${process.env.REACT_APP_THEME} ${isConnected && !kiosk ? 'connected' : ''}`}
|
|
84
84
|
style={{
|
|
85
85
|
// background: state.theme.colors.bodyBackground,
|
|
86
|
-
height:
|
|
86
|
+
height: 'auto',
|
|
87
87
|
}}
|
|
88
88
|
>
|
|
89
89
|
{/* <MenuOutlined style={{left:'1%',top:'1%', fontSize:18, position:'absolute', zIndex:999}} onClick={showSidebar}/> */}
|
|
@@ -236,13 +236,14 @@ function GlobalHeaderContent({ loading, appSettings, children, isConnected, hist
|
|
|
236
236
|
</div>
|
|
237
237
|
{/* Right Section of the Component Loader Ends */}
|
|
238
238
|
</div>
|
|
239
|
-
|
|
239
|
+
{licAlert && licenseData && (
|
|
240
240
|
<div
|
|
241
241
|
style={{
|
|
242
|
+
top: 0,
|
|
242
243
|
marginTop: '3rem',
|
|
243
244
|
right: '2%',
|
|
244
245
|
position: 'absolute',
|
|
245
|
-
zIndex:
|
|
246
|
+
zIndex: 1001,
|
|
246
247
|
}}
|
|
247
248
|
>
|
|
248
249
|
<LicenseAlert data={licenseData} />
|