Merge pull request #29846 from sftim/20210928_restrict_figure_width_wide_viewport

Restrict width of blog figures for wide viewports
This commit is contained in:
Kubernetes Prow Robot
2021-09-28 11:17:16 -07:00
committed by GitHub
+7
View File
@@ -635,6 +635,13 @@ body.td-documentation {
}
}
// Match Docsy-imposed max width on text body
@media (min-width: 1200px) {
body.td-blog main .td-content > figure {
max-width: 80%;
}
}
.td-content {
table code {
background-color: inherit !important;