mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
ddd9334bd6
[web] Split test calculator GitOrigin-RevId: 53a84a64d69c47d692f215dee351af635a5dcceb
37 lines
616 B
Text
37 lines
616 B
Text
.admin-panel-pagination {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.phase-badge {
|
|
display: inline-block;
|
|
font-size: @font-size-small;
|
|
white-space: nowrap;
|
|
text-align: center;
|
|
padding: 3px 7px;
|
|
&:extend(.label);
|
|
&:extend(.label-info);
|
|
}
|
|
|
|
.scrollable {
|
|
max-height: calc(100vh - 40vh);
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.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;
|
|
}
|