Fix indentation

This commit is contained in:
Kovid Goyal 2021-04-12 09:05:17 +05:30
parent 093a71089b
commit 47b48e49e6
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -223,12 +223,12 @@ add_extra_css(def():
# the default font sizes, things will break again
# https://blog.osmosys.asia/2017/01/05/prevent-ios-from-zooming-in-on-input-fields/
ans += '''
select, textarea, input[type="text"], input[type="password"],
input[type="datetime"], input[type="datetime-local"],
input[type="date"], input[type="month"], input[type="time"],
input[type="week"], input[type="number"], input[type="email"],
input[type="url"] { font-size: 16px }
'''
select, textarea, input[type="text"], input[type="password"],
input[type="datetime"], input[type="datetime-local"],
input[type="date"], input[type="month"], input[type="time"],
input[type="week"], input[type="number"], input[type="email"],
input[type="url"] { font-size: 16px }
'''
return ans
)