mirror of
https://github.com/mue/mue.git
synced 2026-07-18 22:44:08 +02:00
fix: welcome import, widget zoom
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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>;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user