91 lines
2.3 KiB
HTML
Executable File
91 lines
2.3 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!--
|
|
If you are serving your web app in a path other than the root, change the
|
|
href value below to reflect the base path you are serving from.
|
|
|
|
The path provided below has to start and end with a slash "/" in order for
|
|
it to work correctly.
|
|
|
|
For more details:
|
|
* https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
|
|
|
|
This is a placeholder for base href that will be replaced by the value of
|
|
the `--base-href` argument provided to `flutter build`.
|
|
-->
|
|
<base href="$FLUTTER_BASE_HREF">
|
|
|
|
<meta charset="UTF-8">
|
|
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
|
|
<meta name="description" content="Nhance HR">
|
|
|
|
<!-- iOS meta tags & icons -->
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
|
<meta name="apple-mobile-web-app-title" content="nhance_hr">
|
|
<link rel="apple-touch-icon" href="icons/Icon-192.png">
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" type="image/png" href="favicon.png"/>
|
|
|
|
<title>Nhance HR</title>
|
|
<link rel="manifest" href="manifest.json">
|
|
|
|
<style>
|
|
/* Hide card three-dot menu */
|
|
[data-testid="dashcard-action-panel"] {
|
|
display: none !important;
|
|
}
|
|
|
|
/* Fallback selector */
|
|
.DashCard-actions {
|
|
display: none !important;
|
|
}
|
|
|
|
/* Hide powered by footer */
|
|
.MetabasePoweredBy {
|
|
display: none !important;
|
|
}
|
|
|
|
/* Fallback */
|
|
a[href*="metabase.com"] {
|
|
display: none !important;
|
|
}
|
|
|
|
.content {
|
|
width: 10%;
|
|
height: 10vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #FFFCE5; /* Overlay background color with opacity */
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
/* Styles for the loading indicator */
|
|
.indicator {
|
|
width: 5vw;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body style="overflow:hidden">
|
|
<div id="loading_indicator" class="container overlay">
|
|
<img class="indicator" src="assets/nhance-loader.gif">
|
|
</div>
|
|
<script src="flutter_bootstrap.js" async></script>
|
|
</body>
|
|
</html>
|