51 lines
843 B
SCSS
51 lines
843 B
SCSS
.sidebar-height{
|
|
height: 100%;
|
|
}
|
|
.role-info-text{
|
|
display: inline;
|
|
font-size: 20px;
|
|
}
|
|
.role-info{
|
|
background-color: #f9f9f9;
|
|
border: 1px solid #a7a7a7;
|
|
border-radius: 3px;
|
|
box-shadow: 0px 2px 5px #dad7d7;
|
|
}
|
|
.role-info td{
|
|
text-align: center;
|
|
}
|
|
|
|
.role-data{
|
|
background-color: #f9f9f9;
|
|
border: 1px solid #a7a7a7;
|
|
border-radius: 3px;
|
|
box-shadow: 0px 2px 5px #dad7d7;
|
|
}
|
|
.role-data{
|
|
min-height: unset;
|
|
h3, h5{
|
|
text-align: center;
|
|
}
|
|
}
|
|
.member-table{
|
|
background-color: #f9f9f9;
|
|
width: 100%;
|
|
}
|
|
.member-table thead{
|
|
background-color: #dadada;
|
|
}
|
|
.member-table tbody{
|
|
tr:hover{
|
|
background-color: #e6e6e6;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
.table-container{
|
|
overflow-y: scroll;
|
|
max-height: 700px;
|
|
}
|
|
@media screen and (max-width: 768px){
|
|
.role-data{
|
|
min-height: unset !important;
|
|
}
|
|
} |