diff --git a/assets/style.css b/assets/style.css index 165e4acf3c7592d7dbf32a16986e66924bc02919..a6bed13247b60dfd5c344d443cfcc0d110d846dc 100644 --- a/assets/style.css +++ b/assets/style.css @@ -1016,7 +1016,7 @@ td.column-0 { color: white; position: absolute; top: 59px; - left: 7px; + left: 15px; font-size: xxx-large; } diff --git a/data_handler.py b/data_handler.py index eb9c29577e376d83bbbf003ee43c73b8beffc8aa..c1186be1630310b11ebd425ba739638206f2e269 100644 --- a/data_handler.py +++ b/data_handler.py @@ -1334,7 +1334,7 @@ class VisFigureHandler(object): lon=item['lon'], station=item['stat'], visibility=float(item['visibility']/1e3), - humidity=(item['humidity'] not in (False, '') and "
RELATIVE HUMIDITY: {} %".format(int(float(item['humidity']))) or '') + humidity=(item['humidity'] not in (False, '') and "
RELATIVE HUMIDITY: {}%".format(int(float(item['humidity']))) or '') ) geojson = dlx.dicts_to_geojson(dicts, lon="lon") diff --git a/tabs/evaluation.py b/tabs/evaluation.py index cd9c4ac5c38423e9feade8d9f3ae2ab327396f09..ca41a4f5b89c27cf2bd34af09aa260ef72b46bc9 100644 --- a/tabs/evaluation.py +++ b/tabs/evaluation.py @@ -207,7 +207,7 @@ def tab_evaluation(window='nrt'): html.Span( html.P([ """The accuracy of the forecast can be quantified by comparing it to observations and is presented by a set of statistics (skill scores).""", - html.B("""Here, you can use the selection menu to explore the skill scores results, based on the selected observation dataset."""), + html.B(""" Here, you can use the selection menu to explore the skill scores results, based on the selected observation dataset."""), ]), className="description-body" ),