diff --git a/app/assets/stylesheets/admin.scss b/app/assets/stylesheets/admin.scss index 94b128e4c..37fc2291c 100644 --- a/app/assets/stylesheets/admin.scss +++ b/app/assets/stylesheets/admin.scss @@ -4,6 +4,7 @@ // 02. Sidebar // 03. List elements // 04. Stats +// 05. Management // // 01. Global styles @@ -272,3 +273,37 @@ body.admin { } } } + +// 05. Management +// - - - - - - - - - - - - - - - - - - - - - - - - - + +.postfix { + height: rem-calc(48); + line-height: rem-calc(48); +} + +.user-permissions { + + ul { + list-style-type: none; + margin-left: 0; + + li { + font-size: rem-calc(14); + margin-bottom: rem-calc(12); + + span { + color: $text-medium; + font-size: rem-calc(12); + } + + .icon-check { + color: $check; + } + + .icon-x { + color: $delete; + } + } + } +}