Skip to content

Commit

Permalink
fix(ObjectPage): hide first section Header
Browse files Browse the repository at this point in the history
  • Loading branch information
vbersch committed Mar 24, 2020
1 parent 2454409 commit 6379779
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/main/src/components/ObjectPage/ObjectPage.jss.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,11 @@ const styles = {
'&::-webkit-scrollbar-corner': {
backgroundColor: ThemingParameters.sapScrollBar_TrackColor
},
'& section[id="ObjectPageSection-1"] > div[role="heading"]': {
'& section[id*="ObjectPageSection-"] > div[role="heading"]': {
display: 'none'
},
'& section[id*="ObjectPageSection-"] ~ section[id*="ObjectPageSection-"] > div[role="heading"]': {
display: 'block'
}
},
'@global html': {
Expand Down

0 comments on commit 6379779

Please sign in to comment.