Skip to content

Commit

Permalink
minor styling cleanup on sys info and licenses
Browse files Browse the repository at this point in the history
  • Loading branch information
Archmonger committed Oct 2, 2022
1 parent 013446a commit be7418d
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions conreq/_core/server_settings/components.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,18 +60,20 @@ def system_info(state, set_state):
("Python Arguments", " ".join(sys.argv)),
]

return (
html.table(
[
html.tr(html.td(f"{name}"), html.td(f"{value}"), key=uuid4().hex)
for name, value in settings_values
]
),
return html.table(
{"style": {"marginTop": "20px"}},
[
html.tr(html.td(f"{name}"), html.td(f"{value}"), key=uuid4().hex)
for name, value in settings_values
],
)


def licenses(state, set_state):
return html.div("Under Construction")
return html.div(
{"style": {"marginTop": "20px"}},
"This page is under construction, and will be developed in a later release.",
)


# pylint: disable=protected-access
Expand Down

0 comments on commit be7418d

Please sign in to comment.