fix: welcome import, widget zoom

This commit is contained in:
David Ralph
2024-04-14 12:23:07 +01:00
parent a21528f998
commit 8f9735044a
20 changed files with 1281 additions and 1376 deletions

View File

@@ -37,7 +37,7 @@ function ExperimentalOptions() {
marks={values.experimental}
element=".other"
/>
<p style={{ textAlign: 'left' }}>Send Event</p>
<p style={{ textAlign: 'left', width: '100%' }}>Send Event</p>
<TextField
label={'Type'}
value={eventType}
@@ -57,7 +57,7 @@ function ExperimentalOptions() {
<Button
type="settings"
onClick={() => EventBus.emit(eventType, eventName)}
label="send"
label="Send"
/>
</Action>
</Row>

View File

@@ -15,16 +15,16 @@ function ClockSkeleton() {
</Suspense>
);
} else if (localStorage.getItem('timeType') === 'percentageComplete') {
return <span className="new-clock clock-container clockSkeleton">68%</span>;
return <span className="vertical-clock clock-container clockSkeleton">68%</span>;
} else if (localStorage.getItem('timeType') === 'verticalClock') {
return (
<span className="new-clock clock-container" style={{ fontSize: '30px' }}>
<span className="vertical-clock clock-container" style={{ fontSize: '30px' }}>
<div className="hour">10</div>
<div className="minute">23</div>
</span>
);
} else {
return <span className="new-clock clock-container clockSkeleton">10:24</span>;
return <span className="vertical-clock clock-container clockSkeleton">10:24</span>;
}
}