mirror of
https://github.com/mue/mue.git
synced 2026-07-24 09:17:24 +02:00
fix: clock colour among other things
Co-authored-by: David Ralph <me@davidcralph.co.uk>
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
display: flex;
|
||||
gap: 15px;
|
||||
a {
|
||||
@include basicIconButton(11px, 1.5rem, modal);
|
||||
@include basicIconButton(11px, 1.2rem, modal);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -109,7 +109,7 @@ export default class TimeSettings extends PureComponent {
|
||||
type="color"
|
||||
name="hourColour"
|
||||
className="minuteColour"
|
||||
onChange={(event) => this.updateColour('hour', event)}
|
||||
onChange={(event) => this.updateColour('hourColour', event)}
|
||||
value={this.state.hourColour}
|
||||
></input>
|
||||
<label htmlFor={'hourColour'} className="customBackgroundHex">
|
||||
@@ -131,7 +131,7 @@ export default class TimeSettings extends PureComponent {
|
||||
type="color"
|
||||
name="minuteColour"
|
||||
className="minuteColour"
|
||||
onChange={(event) => this.updateColour('minute', event)}
|
||||
onChange={(event) => this.updateColour('minuteColour', event)}
|
||||
value={this.state.minuteColour}
|
||||
></input>
|
||||
<label htmlFor={'minuteColour'} className="customBackgroundHex">
|
||||
|
||||
Reference in New Issue
Block a user