From 0c02849775c0fa767e32c91d6b78d48ee9cd9fce Mon Sep 17 00:00:00 2001 From: moonrailgun Date: Thu, 27 Apr 2023 15:00:04 +0800 Subject: [PATCH] style: move sakana widget positon to bottom --- client/web/plugins/com.msgbyte.widget.sakana/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/web/plugins/com.msgbyte.widget.sakana/src/main.ts b/client/web/plugins/com.msgbyte.widget.sakana/src/main.ts index 24a3ad57..d6cefc74 100644 --- a/client/web/plugins/com.msgbyte.widget.sakana/src/main.ts +++ b/client/web/plugins/com.msgbyte.widget.sakana/src/main.ts @@ -4,7 +4,7 @@ import './main.css'; // copy from sakana-widget/dist/index.css const container = document.createElement('div'); container.style.position = 'fixed'; container.style.left = '60px'; -container.style.bottom = '80px'; +container.style.bottom = '0px'; document.body.appendChild(container); new SakanaWidget().setState({ r: 1, y: 1, t: 0, w: 0 }).mount(container);