fix(UptimelinkWebwidget): Remove incorrect scale transformation in focused state.
This commit is contained in:
parent
f705b18bad
commit
fa1d2d855c
@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-01-09 - 1.2.1 - fix(UptimelinkWebwidget)
|
||||||
|
Remove incorrect scale transformation in focused state.
|
||||||
|
|
||||||
|
- Fixed the CSS transform property for the .mainbox.focused class in the UptimelinkWebwidget component by removing an unintended scale transformation.
|
||||||
|
|
||||||
## 2025-01-09 - 1.2.0 - feat(webwidget)
|
## 2025-01-09 - 1.2.0 - feat(webwidget)
|
||||||
Enhanced widget animations and styling
|
Enhanced widget animations and styling
|
||||||
|
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@uptime.link/webwidget',
|
name: '@uptime.link/webwidget',
|
||||||
version: '1.2.0',
|
version: '1.2.1',
|
||||||
description: 'The web widget for public use of uptimelink, allowing users to monitor uptime status through a user-friendly interface.'
|
description: 'The web widget for public use of uptimelink, allowing users to monitor uptime status through a user-friendly interface.'
|
||||||
}
|
}
|
||||||
|
@ -89,7 +89,7 @@ export class UptimelinkWebwidget extends DeesElement {
|
|||||||
.mainbox.focused {
|
.mainbox.focused {
|
||||||
width: 182px;
|
width: 182px;
|
||||||
height: 117px;
|
height: 117px;
|
||||||
transform: translateX(-16px)scale(1.1, 1.1);
|
transform: translateX(-16px);
|
||||||
background: ${this.goBright ? '#ffffff' : '#222222' } !important;
|
background: ${this.goBright ? '#ffffff' : '#222222' } !important;
|
||||||
box-shadow: ${this.goBright ? '0px 0px 5px rgba(0,0,0,0.1)' : ''} !important;
|
box-shadow: ${this.goBright ? '0px 0px 5px rgba(0,0,0,0.1)' : ''} !important;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user