Hi, I am using the Classic apps with the stopwatch component.
I am using CSS to hide the STOP native button and adjust the location of the PAUSE/START native button.
On the builder it works great! exactly as is should.
On the actual app on the phone the CSS does not work. (Tried on 4 devices).
This is likely the problem. You’re using an unstable class name and it’s highly likely your other devices don’t use the same class name. The fix is to find a way to target that class more reliably.
.timer-container > svg {
display: none !important;
}
.timer-container {
height: 10px !important;
}
[title="Reset Timer"], [title="Stop Timer"] {
display: none !important;
}
[title=“Start/Stop Timer”] {
position: relative;
left: 1px;
top: 45px;
opacity:5;
transform: scale(1.7);
z-index:2;
}
Still did not work.
Edit: Not working on the builder, I did not try it on the actual app.
Maybe on the builder it wont work but on the app it will?
I changed the class name slightly if you want to change the button properties. You can use width or height, transform-scale if you want to increase the size of the button and icon together.
Opacity has a value of 0-1 or 0-100%.