mirror of
https://github.com/documize/community.git
synced 2025-08-02 12:05:23 +02:00
39 lines
611 B
SCSS
39 lines
611 B
SCSS
.space-settings {
|
|
> .panel {
|
|
@include content-container();
|
|
@include ease-in();
|
|
@extend .transition-all;
|
|
}
|
|
|
|
.permissions-table {
|
|
padding: 0;
|
|
margin: 0 0 30px 0;
|
|
width: 100%;
|
|
|
|
> .row {
|
|
padding: 8px 0;
|
|
|
|
> .permission-name-cell {
|
|
font-size: 1.1rem;
|
|
background-color: $color-off-white;
|
|
padding: 10px 10px;
|
|
}
|
|
|
|
> .permission-roles-cell {
|
|
margin: 15px 0 20px 40px;
|
|
|
|
> .role-category {
|
|
color: $color-gray;
|
|
font-weight: bold;
|
|
display: inline-block;
|
|
}
|
|
|
|
> label {
|
|
color: $color-gray;
|
|
font-weight: normal;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|