Skip to content

Commit

Permalink
Merge pull request #47 from bitovi/change-instance
Browse files Browse the repository at this point in the history
adding a key
justinbmeyer authored May 17, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents f67abf5 + 44ecce9 commit 0695420
Showing 11 changed files with 305 additions and 11 deletions.
268 changes: 268 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@
"description": "",
"main": "server.js",
"scripts": {
"dev": "nodemon server/server.js",
"start-local": "node server/server.js",
"fe:css:build": "npx tailwindcss -i ./public/jira-auto-scheduler.css -o ./public/dist/production.css --watch --minify",
"fe:js:build": "rollup -c -w --sourcemap"
@@ -21,6 +22,7 @@
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"live-server": "^1.2.2",
"nodemon": "^3.1.0",
"rollup": "^4.5.1",
"rollup-plugin-delete": "^2.0.0",
"tailwindcss": "^3.3.3"
26 changes: 25 additions & 1 deletion pages/index.html.js
Original file line number Diff line number Diff line change
@@ -24,7 +24,6 @@ module.exports = function (env) {
<meta property="og:image" content="https://repository-images.githubusercontent.com/354628180/fe4dbf27-0409-4cc6-86cc-0a7097983901">
<meta property="og:url" content="https://auto-scheduler.bitovi-jira.com/">
<meta name="twitter:card" content="summary_large_image">
</head>
<body class="bg-slate-400">
<div class="bg-white px-2 drop-shadow-md hide-on-fullscreen">
@@ -50,6 +49,31 @@ module.exports = function (env) {
</nav>
</div>
<div id="mainElement">Loading ... </div>
<div id="key" class="p-2 rounded-lg bg-white m-2 mb-10">
<div class="text-base font-semibold shrink">KEY</div>
<div class="flex justify-center">
<div class="relative w-1/2">
<div class="absolute bg-gradient-to-r from-blue-200 to-green-200 from-85% to-95% h-2 top-3 border-box w-full"></div>
<div class="work-item cursor-pointer border-solid border relative bg-gradient-to-r from-blue-500 to-green-400 from-45% to-55% h-8 border-box rounded w-1/2"
style="left: 50%"></div>
<div class="relative pt-2">
<div class="text-center" style="position: absolute; width: 30%; transform: translateX(-50%);">
<div class="w-3 h-3 bg-blue-200 rounded-full inline-block"></div><br/>
Earliest development might start within risk parameters
</div>
<div class="text-center" style="position: absolute; width: 30%; right: 0px; transform: translateX(50%);">
<div class="w-3 h-3 bg-green-400 rounded-full inline-block"></div><br/>
Latest development must finish to be within risk parameters
</div>
<div class="text-center" style="position: relative; width: 30%; left: 50%; transform: translateX(-50%);">
<div class="w-3 h-3 bg-blue-500 rounded-full inline-block"></div><br/>
Latest development must start to be within risk parameters</div>
</div>
</div>
</div>
</div>
<script>
</script>
Loading

0 comments on commit 0695420

Please sign in to comment.