diff options
author | crupest <crupest@outlook.com> | 2020-11-22 09:53:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-22 09:53:31 +0800 |
commit | ef9489a8c1084d33796da366c685bc24550eafbd (patch) | |
tree | 59227246f0964dcdc9b735d64a0397a9dd3a58bf /FrontEnd/src/app/views/admin/admin.sass | |
parent | ffa5d76316ccec4edc307d0432ef10fb18436c63 (diff) | |
parent | f451000f281a4c9c44caf4dc835d3b2fdb55fa81 (diff) | |
download | timeline-ef9489a8c1084d33796da366c685bc24550eafbd.tar.gz timeline-ef9489a8c1084d33796da366c685bc24550eafbd.tar.bz2 timeline-ef9489a8c1084d33796da366c685bc24550eafbd.zip |
Merge pull request #189 from crupest/admin
Refactor front end to use the new permission system. Enhance admin page.
Diffstat (limited to 'FrontEnd/src/app/views/admin/admin.sass')
-rw-r--r-- | FrontEnd/src/app/views/admin/admin.sass | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/FrontEnd/src/app/views/admin/admin.sass b/FrontEnd/src/app/views/admin/admin.sass new file mode 100644 index 00000000..1ce010f8 --- /dev/null +++ b/FrontEnd/src/app/views/admin/admin.sass @@ -0,0 +1,22 @@ +.admin-user-item
+ position: relative
+
+ .edit-mask
+ position: absolute
+ top: 0
+ left: 0
+ bottom: 0
+ right: 0
+
+ background: #ffffffc5
+ position: absolute
+
+ display: flex
+ justify-content: center
+ align-items: center
+
+ @include media-breakpoint-down(xs)
+ flex-direction: column
+
+ button
+ margin: 0.5em 2em
|