2022-05-18 09:45:57 -04:00
|
|
|
.admin-panel-pagination {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2022-12-20 11:09:39 -05:00
|
|
|
|
|
|
|
.phase-badge {
|
|
|
|
display: inline-block;
|
|
|
|
font-size: @font-size-small;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-align: center;
|
|
|
|
padding: 3px 7px;
|
2023-01-09 11:21:18 -05:00
|
|
|
&:extend(.label);
|
|
|
|
&:extend(.label-info);
|
2022-12-20 11:09:39 -05:00
|
|
|
}
|
2023-08-03 10:42:52 -04:00
|
|
|
|
|
|
|
.scrollable {
|
|
|
|
max-height: calc(100vh - 40vh);
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
2024-01-12 05:09:12 -05:00
|
|
|
|
|
|
|
.hr-sect {
|
|
|
|
display: flex;
|
|
|
|
flex-basis: 100%;
|
|
|
|
align-items: center;
|
|
|
|
color: rgba(0, 0, 0, 0.35);
|
|
|
|
margin: 8px 0;
|
|
|
|
}
|
|
|
|
.hr-sect:before,
|
|
|
|
.hr-sect:after {
|
|
|
|
content: '';
|
|
|
|
flex-grow: 1;
|
|
|
|
background: rgba(0, 0, 0, 0.35);
|
|
|
|
height: 1px;
|
|
|
|
font-size: 0;
|
|
|
|
line-height: 0;
|
|
|
|
margin: 0 8px;
|
|
|
|
}
|