mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-25 14:51:31 -07:00
chore: 🎨 format
This commit is contained in:
parent
e88ab6cb0f
commit
a9b09f5b29
2 changed files with 7 additions and 3 deletions
|
@ -23,8 +23,7 @@ export default function () {
|
||||||
|
|
||||||
fetchMeta().then((meta) => {
|
fetchMeta().then((meta) => {
|
||||||
if (!meta.enableServerMachineStats) return;
|
if (!meta.enableServerMachineStats) return;
|
||||||
}
|
});
|
||||||
);
|
|
||||||
|
|
||||||
async function tick() {
|
async function tick() {
|
||||||
const cpu = await cpuUsage();
|
const cpu = await cpuUsage();
|
||||||
|
|
|
@ -26,7 +26,12 @@
|
||||||
class="banner"
|
class="banner"
|
||||||
:style="{
|
:style="{
|
||||||
backgroundImage: `url('${user.bannerUrl}')`,
|
backgroundImage: `url('${user.bannerUrl}')`,
|
||||||
'--backgroundImageStatic': defaultStore.state.useBlurEffect ? `url('${getStaticImageUrl(user.bannerUrl)}')` : null
|
'--backgroundImageStatic': defaultStore
|
||||||
|
.state.useBlurEffect
|
||||||
|
? `url('${getStaticImageUrl(
|
||||||
|
user.bannerUrl,
|
||||||
|
)}')`
|
||||||
|
: null,
|
||||||
}"
|
}"
|
||||||
></div>
|
></div>
|
||||||
<div class="fade"></div>
|
<div class="fade"></div>
|
||||||
|
|
Loading…
Reference in a new issue