css fix of expanding code box in documentation (#1155)

The code sample box in Hugo code samples expanded on mouse over to 100vw which went over the sidebar toc. This solution solves this looking better and expanding only over the middle column.
This commit is contained in:
Daniel Santos 2020-06-19 16:04:04 +01:00 committed by GitHub
parent 43b5761788
commit f27254d602
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4828,7 +4828,7 @@ pre {
right: 50%;*/ right: 50%;*/
/*margin-left: -30vw;*/ /*margin-left: -30vw;*/
margin-right: -30vw; margin-right: -30vw;
max-width: 100vw; max-width: 50vw;
} }
} }
.code-block .line-numbers-rows { .code-block .line-numbers-rows {