1
0
Fork 0
mirror of https://github.com/overleaf/overleaf.git synced 2025-04-22 11:57:00 +00:00

Fix big spacing on the bottom and the right side of the new plans page ()

GitOrigin-RevId: c30ed0e7733eb48048162ed55d0359b449e4f10b
This commit is contained in:
M Fahru 2022-07-08 09:31:19 -04:00 committed by Copybot
parent 34a7d3598f
commit c95c96a1d4

View file

@ -1047,9 +1047,15 @@ p.plans-v2-table-green-highlighted-text {
}
.plans-v2-table-sticky-header-container {
height: 100%;
width: 100%;
position: absolute;
@media (max-width: @screen-xs-max) {
// `height: 60%` is just an arbitrary percentage
// since we need to cover the whole plans_v2_table
// but not too much so it vertically overflows the page
// and it's not trivial to calculate the precise table height
height: 60%;
width: 100%;
position: absolute;
}
}
.plans-v2-table-sticky-header-without-switch {