[Fix] Countdown UI Initial Position (#1267)

* .

* Fixed so countdown ui respects foundry UiScale

* Raised system version
This commit is contained in:
WBHarry 2025-11-11 22:13:24 +01:00 committed by GitHub
parent 84ef1063d8
commit 7c4200b431
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 17 additions and 5 deletions

View file

@ -18,7 +18,7 @@
box-shadow: none;
width: 300px;
top: 16px;
right: 64px;
right: calc(64px * var(--ui-scale));
transition:
right ease 250ms,
opacity var(--ui-fade-duration) ease,
@ -29,7 +29,7 @@
}
&.expanded {
right: 364px;
right: calc(364px * var(--ui-scale));
}
&.icon-only {