mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-24 07:14:04 +00:00
fix resize problem
This commit is contained in:
parent
3666ebb931
commit
133c7230bc
1 changed files with 1 additions and 8 deletions
|
@ -66,16 +66,9 @@ export default {
|
|||
let topBottom = (((this.beatHeight * this.hoverScale) - this.beatHeight) / 2);
|
||||
let leftRight = (((this.beatWidth * this.hoverScale) - this.beatWidth) / 2);
|
||||
|
||||
let width
|
||||
if (this.maxBeat > 0) {
|
||||
width = (this.beatWidth + this.beatMargin * 2) * this.maxBeat + (leftRight * 2) + "px"
|
||||
} else {
|
||||
width = "100%"
|
||||
}
|
||||
|
||||
return {
|
||||
padding: `${topBottom}px ${leftRight}px`,
|
||||
width: width,
|
||||
width: "100%",
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue