fix(component): Fix sizing of status indicator in uptimelink-webwidget

This commit is contained in:
Philipp Kunz 2025-01-09 04:05:19 +01:00
parent 54e0690f0a
commit f914b26e78
3 changed files with 9 additions and 3 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

@ -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;
}