diff options
| author | Eddy Pedroni <epedroni@pm.me> | 2026-01-17 18:57:54 +0100 |
|---|---|---|
| committer | Eddy Pedroni <epedroni@pm.me> | 2026-01-17 18:57:54 +0100 |
| commit | 2e3784ca058fd017dad68821743b3c97ac970d8b (patch) | |
| tree | c8e3701249bdcfb64c78f79a0943f3f5785804d2 /web-project/src | |
| parent | ff1d708b142624f72ebe5af055c57536ddd6f9d5 (diff) | |
Adjust button height for android webview
Diffstat (limited to 'web-project/src')
| -rw-r--r-- | web-project/src/solo_tool_web.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web-project/src/solo_tool_web.py b/web-project/src/solo_tool_web.py index 9c65a87..d105e3f 100644 --- a/web-project/src/solo_tool_web.py +++ b/web-project/src/solo_tool_web.py @@ -106,7 +106,7 @@ def sessionPage(sessionId: str): ui.slider(min=0, max=1.0, step=0.001).bind_value(st, 'keyPoint').props('selection-color=transparent color=secondary') # Play control - with ui.button_group().classes('w-full').style('height: 80px'): + with ui.button_group().classes('w-full').style('height: 78px'): buttonSize = "20px" ui.button(icon='skip_previous', on_click=handlers.restartOrPreviousSong(st, 0.01)).props(f"size={buttonSize}").style('flex: 1') ui.button(color='positive', on_click=handlers.playPause(st)).bind_icon_from(st, "playing", lambda playing: "pause" if playing else "play_arrow").props(f"size={buttonSize}").style('flex: 1') |
