diff --git a/public/static/css/white.css b/public/static/css/white.css
index 84cded2..8f0ab61 100644
--- a/public/static/css/white.css
+++ b/public/static/css/white.css
@@ -43,11 +43,8 @@
border-radius: 0.6rem;
}
-.theme-default #panes #title-container {
- padding: 2rem;
-}
-
.theme-default #panes .container {
+ padding: 2rem;
background-color: white;
margin: 3rem auto 1rem auto;
border-radius: 0.6rem;
@@ -109,6 +106,16 @@
line-height: 1.8rem;
}
+.theme-default .user-form {
+ border: dashed 2px #ccc;
+ padding: 1rem;
+ margin-top: 1rem;
+}
+
+.theme-default .role-list-item {
+ margin: 0 auto 1rem 0;
+}
+
.theme-default .wide-input {
width: 20rem;
}
diff --git a/src/client/web/src/components/pane_admin.tsx b/src/client/web/src/components/pane_admin.tsx
index e0918a5..91a7f2c 100644
--- a/src/client/web/src/components/pane_admin.tsx
+++ b/src/client/web/src/components/pane_admin.tsx
@@ -152,25 +152,21 @@ export class UserForm extends React.Component<
render() {
return (
-
+
-
- {this.props.msg.pkg.get("user.name")} {this.props.name}
-
- /
-
- {this.props.msg.pkg.get("user.id")} {this.props.id}
-
+
+ {`${this.props.msg.pkg.get("user.name")}: `}
+ {this.props.name}
+
+
+ {`${this.props.msg.pkg.get("user.id")}: `}
+ {this.props.id}
+
,
-