2 Commits

Author SHA1 Message Date
a61326a8e5 1.0.78 2023-10-06 22:36:04 +02:00
cefde68b14 fix(core): update 2023-10-06 22:36:03 +02:00
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@uptime.link_private/webwidget", "name": "@uptime.link_private/webwidget",
"version": "1.0.77", "version": "1.0.78",
"private": false, "private": false,
"description": "the webwidget for public use of uptimelink", "description": "the webwidget for public use of uptimelink",
"main": "dist_ts_web/index.js", "main": "dist_ts_web/index.js",

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@uptime.link_private/webwidget', name: '@uptime.link_private/webwidget',
version: '1.0.77', version: '1.0.78',
description: 'the webwidget for public use of uptimelink' description: 'the webwidget for public use of uptimelink'
} }

View File

@ -47,7 +47,7 @@ export class UptimelinkWebwidget extends DeesElement {
position: relative; position: relative;
display: block; display: block;
height: 30px; height: 30px;
z-index: ${this.isElevated ? '1000' : 'auto'} ; z-index: ${this.isElevated || this.isOnTop ? '1000' : 'auto'} ;
} }
.mainbox { .mainbox {
position: relative; position: relative;