Fix the width available to page content (#5299)
Signed-off-by: Miki <miki@amazon.com>
This commit is contained in:
parent
36f5d9a670
commit
aba231e921
|
@ -69,6 +69,13 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
> ul {
|
||||||
|
right: .5em;
|
||||||
|
left: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
> ul {
|
> ul {
|
||||||
display: block;
|
display: block;
|
||||||
|
|
|
@ -286,7 +286,8 @@ img {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 30px;
|
bottom: 30px;
|
||||||
right: 16px;
|
right: 16px;
|
||||||
z-index: 1;
|
z-index: 999;
|
||||||
|
|
||||||
svg {
|
svg {
|
||||||
transform: rotate(-90deg);
|
transform: rotate(-90deg);
|
||||||
}
|
}
|
||||||
|
@ -515,6 +516,10 @@ p.label {
|
||||||
// Adds TOC to right hand side in xl layout
|
// Adds TOC to right hand side in xl layout
|
||||||
.main-content-wrap {
|
.main-content-wrap {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
|
@include mq(xl) {
|
||||||
|
width: calc(100% - #{$toc-width});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.toc-wrap {
|
.toc-wrap {
|
||||||
|
|
Loading…
Reference in New Issue