1515 >
1616 <component
1717 :is =" isTargetIDE ? 'div' : 'main'"
18- class =" main" id =" main"
18+ class =" main" id =" app- main"
1919 >
2020 <DocumentationHero
2121 :role =" role"
129129 :source =" remoteSource"
130130 :sections =" primaryContentSectionsSanitized"
131131 />
132- <ViewMore v-if =" shouldShowViewMoreLink" :url =" viewMoreLink" />
133132 </div >
134133 <Topics
135134 v-if =" shouldRenderTopicSection"
145144 :isSymbolBeta =" isSymbolBeta"
146145 />
147146 <Relationships
148- v-if =" relationshipsSections && !enableMinimized "
147+ v-if =" relationshipsSections"
149148 :sections =" relationshipsSections"
149+ :enableMinimized =" enableMinimized"
150150 />
151151 <!-- NOTE: see also may contain information about other apis, so we cannot
152152 pass deprecation and beta information -->
153153 <SeeAlso
154154 v-if =" seeAlsoSections && !enableMinimized"
155155 :sections =" seeAlsoSections"
156156 />
157+ <ViewMore
158+ v-if =" shouldShowViewMoreLink"
159+ :url =" viewMoreLink"
160+ class =" minimized-container"
161+ />
157162 </div >
158163 <template v-if =" enableOnThisPageNav " >
159164 <OnThisPageStickyContainer v-show =" isOnThisPageNavVisible" >
@@ -778,7 +783,7 @@ $space-size: 15px;
778783 }
779784}
780785
781- #main {
786+ #app - main {
782787 outline- style: none;
783788 height: 100 % ;
784789
@@ -831,6 +836,11 @@ $space-size: 15px;
831836 -- aside- border- radius: 6px ;
832837 -- code- border- radius: 6px ;
833838
839+ & : not (.declarations - container ) {
840+ padding- left: 1 .4rem ;
841+ padding- right: 1 .4rem ;
842+ }
843+
834844 .description {
835845 margin- bottom: 1 .5em ;
836846 }
@@ -904,11 +914,6 @@ $space-size: 15px;
904914 }
905915}
906916
907- .full - width- container .doc - content .minimized - container {
908- padding- left: 1 .4rem ;
909- padding- right: 1 .4rem ;
910- }
911-
912917: deep () {
913918 .no - primary- content {
914919 // remove border-top for first section of the page
@@ -952,7 +957,7 @@ $space-size: 15px;
952957 min- width: 0 ;
953958 width: 100 % ;
954959
955- // only render border on declaration list menu
960+ // only render border and bottom margin on declaration list menu
956961 // when there are no content sections afterwards at all
957962 .container : only- child {
958963 .declaration - list- menu: last- child:: before {
@@ -961,6 +966,7 @@ $space-size: 15px;
961966 border- top- width: var (-- content- table- title- border- width, 1px );
962967 content: ' ' ;
963968 display: block;
969+ margin- bottom: $section- spacing- single- side;
964970 }
965971 }
966972
0 commit comments