WS: improve pan knob appearance in mixer demo

This commit is contained in:
Luciano Iam 2020-07-19 23:32:46 +02:00 committed by Robin Gareus
parent f1d96f5bf1
commit 52e80db8d5
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
2 changed files with 7 additions and 3 deletions

View File

@ -28,14 +28,14 @@
height: 100%;
}
.toolkit-knob > svg > .toolkit-circular > .toolkit-hand {
fill: #002a42;
fill: #487c92;
}
.toolkit-knob > svg > .toolkit-circular > .toolkit-base {
}
.toolkit-knob > svg > .toolkit-circular > .toolkit-value {
fill: #487c92;
/*fill: #487c92;*/
}
.toolkit-knob > svg > .toolkit-circular > .toolkit-dots > .toolkit-dot {
fill: #002f42;

View File

@ -177,7 +177,11 @@ export class PanKnob extends Knob {
//scale: 'linear',
scale: (k) => 1.0 - k,
min: 0,
max: 1.0
max: 1.0,
hand: {
width: 5,
length: 15
}
});
}