Merge pull request #10774 from overleaf/jel-new-page-style

[web] Updates to new page style

GitOrigin-RevId: 4d29b4642efef608164fb9fc6875c1618565d231
This commit is contained in:
Jessica Lawshe
2022-12-05 09:32:08 -06:00
committed by Copybot
parent 15f5079331
commit 0d266da02e
3 changed files with 15 additions and 1 deletions

View File

@@ -47,7 +47,7 @@
}
.page-header {
margin-top: 0;
margin-top: 60px;
}
/*

View File

@@ -30,6 +30,7 @@
@icon-bullet-list-icon-size: 30px;
ul {
list-style: none;
margin-top: 30px;
padding-left: 20px;
}

View File

@@ -20,4 +20,17 @@
video {
clip-path: inset(0 0); // fix Safari bug that will sometimes add border
}
.section-row {
margin: 0 auto;
/* match .col-sm-12 */
/* @grid-gutter-width is used for margins */
max-width: (@screen-sm) - @grid-gutter-width!important;
@media (min-width: @screen-md-min) {
max-width: (@screen-md) - @grid-gutter-width!important;
}
@media (min-width: @screen-lg-min) {
max-width: (@screen-lg) - @grid-gutter-width!important;
}
}
}