Skip to content

Commit

Permalink
Fixes iOS zoom issue (#456)
Browse files Browse the repository at this point in the history
* Fixes iOS zoom issue

* Change last dialog to non-relative sizing
  • Loading branch information
axelknock authored Mar 14, 2024
1 parent dc93021 commit 52d8a3a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions timetagger/app/dialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -671,24 +671,24 @@ def __init__(self, node, callback, t1, t2, mode):
</div>
<div>
<span><i class='fas' style='color:#999; vertical-align:middle;'>\uf144</i></span>
<input type='date' step='1' style='font-size: 70%;' />
<input type='date' step='1' style='font-size: 16px;' />
<span style='display: flex;'>
<input type='text' style='flex:1; min-width: 50px; font-size: 80%;' />
<input type='text' style='flex:1; min-width: 50px; font-size: 16px;' />
<button type='button' style='width:2em; margin-left:-1px;'>+</button>
<button type='button' style='width:2em; margin-left:-1px;'>-</button>
</span>
<span></span>
<span><i class='fas' style='color:#999; vertical-align:middle;'>\uf28d</i></span>
<input type='date' step='1' style='font-size: 70%;' />
<input type='date' step='1' style='font-size: 16px;' />
<span style='display: flex;'>
<input type='text' style='flex:1; min-width: 50px; font-size: 80%;' />
<input type='text' style='flex:1; min-width: 50px; font-size: 16px;' />
<button type='button' style='width:2em; margin-left:-1px;'>+</button>
<button type='button' style='width:2em; margin-left:-1px;'>-</button>
</span>
<span></span>
<span><i class='fas' style='color:#999; vertical-align:middle;'>\uf2f2</i></span>
<span></span>
<input type='text' style='flex: 1; min-width: 50px; font-size: 80%' />
<input type='text' style='flex: 1; min-width: 50px; font-size: 16px' />
<span></span>
</div>
"""
Expand Down

0 comments on commit 52d8a3a

Please sign in to comment.