14 lines
285 B
SCSS
14 lines
285 B
SCSS
#org-div-home-and-up {
|
|
position: absolute;
|
|
right: 0;
|
|
z-index: 10;
|
|
padding: 10px;
|
|
|
|
// Large Screens
|
|
@media all and (min-width: $content-max-width+$toc-width) {
|
|
right: auto;
|
|
width: $content-max-width+$toc-width;
|
|
text-align: right;
|
|
}
|
|
}
|