Open tsummerall opened 4 years ago
This was being discussed in #24 but I haven't got around to completely integrating it in a sensible way yet.
we need this feature
any update of removing days and hours?
You can do it in CSS alone. It's a fix, but it would be better if there were ways of doing it in JS.
This one hides the days and hours.
#flipdown {
display: flex;
align-items: center;
justify-content: center;
margin-left: unset !important;
}
#flipdown .rotor-group:first-child,
#flipdown .rotor-group:nth-child(2) {
display:none !important;
}
You can do it in CSS alone. It's a fix, but it would be better if there were ways of doing it in JS.
This one hides the days and hours.
#flipdown { display: flex; align-items: center; justify-content: center; margin-left: unset !important; } #flipdown .rotor-group:first-child, #flipdown .rotor-group:nth-child(2) { display:none !important; }
Thank You @SmileSoftSr this works great! I'm building 3D printer status pages and just need HH:MM:SS
Agree that a hide option in JS would be idea, but this works just fine :D
For example I just need minutes and seconds. What's the best approach to hide the unneeded rotors?