diff --git a/src/styles/_constants-mobile.scss b/src/styles/_constants-mobile.scss index 5b4f2469a6..cbd7e7817a 100644 --- a/src/styles/_constants-mobile.scss +++ b/src/styles/_constants-mobile.scss @@ -33,7 +33,7 @@ $tabletItemH: floor(math.div($gridItemMobile, 3)); $shellTimeConductorMobileH: 90px; /************************** MOBILE TREE MENU DIMENSIONS */ -$mobileTreeItemH: 35px; +$mobileTreeItemH: 30px; $mobileTreeItemIndent: 15px; $mobileTreeRightArrowW: 30px; diff --git a/src/ui/layout/pane.scss b/src/ui/layout/pane.scss index 40ed2710af..c322706c46 100644 --- a/src/ui/layout/pane.scss +++ b/src/ui/layout/pane.scss @@ -78,6 +78,11 @@ &.l-pane--collapsed { padding-left: 0 !important; padding-right: 0 !important; + body.mobile & { + .l-shell__sync-tree-button .l-shell__reset-tree-button{ + display: none !important; + } + } } } diff --git a/src/ui/layout/recent-objects.scss b/src/ui/layout/recent-objects.scss index 6d0fbe958c..4dc9bbcfa4 100644 --- a/src/ui/layout/recent-objects.scss +++ b/src/ui/layout/recent-objects.scss @@ -115,6 +115,7 @@ color: $colorItemTreeFg; cursor: pointer; padding: $interiorMarginSm; + margin-left: $interiorMarginSm; &:hover { background-color: $colorItemTreeHoverBg; @@ -136,6 +137,7 @@ body.mobile { } .c-recentobjects-listitem__wrapper{ height: $mobileTreeItemH; + align-items: center; margin-bottom: $interiorMarginSm; background: rgba(172, 172, 172, 0.1); border-radius: $interiorMarginSm; @@ -143,4 +145,7 @@ body.mobile { .c-recentobjects-listitem{ border-top: none; } + .c-recentobjects-listitem__type-icon{ + margin-left: $interiorMargin; + } } \ No newline at end of file