1
0
mirror of https://github.com/flarum/core.git synced 2025-08-06 16:36:47 +02:00

feat: add user creation to users list page (#3744)

This commit is contained in:
David Wheatley
2023-05-07 18:38:37 +01:00
committed by GitHub
parent 9363682e1c
commit 21b483625e
8 changed files with 360 additions and 23 deletions

View File

@@ -2,6 +2,7 @@
@import "admin/AdminHeader";
@import "admin/AdminNav";
@import "admin/CreateUserModal";
@import "admin/DashboardPage";
@import "admin/DebugWarningWidget";
@import "admin/BasicsPage";

View File

@@ -0,0 +1,6 @@
.CreateUserModal {
&-bulkAdd {
margin-top: 32px;
margin-bottom: 24px;
}
}

View File

@@ -2,6 +2,20 @@
// Pad bottom of page to make nav area look less squashed
padding-bottom: 24px;
&-header {
margin-bottom: 16px;
}
&-actions {
display: flex;
align-items: center;
justify-content: space-between;
* + * {
margin-left: 8px;
}
}
&-grid {
width: 100%;
position: relative;