2 Commits

Author SHA1 Message Date
e75b1d50cf 1.2.2 2025-01-09 04:05:20 +01:00
f914b26e78 fix(component): Fix sizing of status indicator in uptimelink-webwidget 2025-01-09 04:05:19 +01:00
4 changed files with 10 additions and 4 deletions

View File

@ -1,5 +1,10 @@
# Changelog
## 2025-01-09 - 1.2.2 - fix(component)
Fix sizing of status indicator in uptimelink-webwidget
- Corrected the status indicator dimensions for consistency.
## 2025-01-09 - 1.2.1 - fix(UptimelinkWebwidget)
Remove incorrect scale transformation in focused state.

View File

@ -1,6 +1,6 @@
{
"name": "@uptime.link/webwidget",
"version": "1.2.1",
"version": "1.2.2",
"private": false,
"description": "The web widget for public use of uptimelink, allowing users to monitor uptime status through a user-friendly interface.",
"main": "dist_ts_web/index.js",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@uptime.link/webwidget',
version: '1.2.1',
version: '1.2.2',
description: 'The web widget for public use of uptimelink, allowing users to monitor uptime status through a user-friendly interface.'
}

View File

@ -95,8 +95,9 @@ export class UptimelinkWebwidget extends DeesElement {
}
.statusindicator {
height: 20px;
width: 20px;
transform: translate(4px, 4px);
height: 12px;
width: 12px;
background: #66BB6A;
border-radius: 10px;
}