22 lines
525 B
CSS
22 lines
525 B
CSS
|
/* 42px: height of the chapril banner */
|
||
|
|
||
|
.repository .diff-detail-box.sticky {
|
||
|
top: 42px; /* default value (0) + 42px */
|
||
|
}
|
||
|
|
||
|
.ui.attached.header.diff-file-header.sticky-2nd-row {
|
||
|
top: 88px; /* default value (46px) + 42px */
|
||
|
}
|
||
|
|
||
|
@media (min-width: 768px) and (max-width: 991px) {
|
||
|
.ui.attached.header.diff-file-header.sticky-2nd-row {
|
||
|
top: 119px; /* default value (77px) + 42px */
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media (max-width: 767px) {
|
||
|
.ui.attached.header.diff-file-header.sticky-2nd-row {
|
||
|
top: 119px; /* default value (77px) + 42px */
|
||
|
}
|
||
|
}
|