Skip to content

Commit

Permalink
Update: Body selectors with filters
Browse files Browse the repository at this point in the history
Added data-format body selectors to the css
  • Loading branch information
rielAsh24 committed May 31, 2023
1 parent 6759bf0 commit f545ccd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/application/style/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ body[data-notebook='edit'] #spacer-widget-bottom {
box-shadow: var(--jp-elevation-z4);
}

#main-panel .jp-TreePanel {
body[data-format='desktop'] #main-panel .jp-TreePanel {
padding: 0rem 2rem;
}

@media screen and (max-width: 760px) {
#main-panel .jp-TreePanel {
padding: 0rem;
@media only screen and (max-width: 760px) {
body[data-format='mobile'] #main-panel .jp-TreePanel {
padding: 0rem 0rem;
}
}

Expand Down

0 comments on commit f545ccd

Please sign in to comment.