diff --git a/src/app/sidebar/sidebar.less b/src/app/sidebar/sidebar.less index 0b799d9d..19893e09 100644 --- a/src/app/sidebar/sidebar.less +++ b/src/app/sidebar/sidebar.less @@ -21,10 +21,11 @@ border-bottom: 1px solid var(--app-border-color); position: relative; display: flex; + align-items: center; .logo { - line-height: 15px; - margin: auto auto; + margin-left: 45px; + margin-top: 4px; svg { width: 88px; } diff --git a/src/app/sidebar/sidebar.tsx b/src/app/sidebar/sidebar.tsx index f094775f..11c83853 100644 --- a/src/app/sidebar/sidebar.tsx +++ b/src/app/sidebar/sidebar.tsx @@ -279,12 +279,7 @@ class MainSideBar extends React.Component {
- 215}> - - - - - +
diff --git a/src/app/workspace/screen/tabs.less b/src/app/workspace/screen/tabs.less index 4b05c3f7..98cca67e 100644 --- a/src/app/workspace/screen/tabs.less +++ b/src/app/workspace/screen/tabs.less @@ -102,13 +102,22 @@ // This applies a transparency mask to the background color, as set above, so that it will blend with whatever the theme's background color is. z-index: 1; width: var(--screen-tab-width); - mask-image: linear-gradient( - rgba(0, 0, 0, 1), - rgba(0, 0, 0, 0.7) 15%, - rgba(0, 0, 0, 0.5) 30%, - rgba(0, 0, 0, 0) 100% - ); + mask-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0) 100%); } + + &.is-active { + border-top: none; + opacity: 1; + font-weight: var(--screentabs-selected-font-weight); + border-top: 2px solid var(--tab-color); + } + + &.is-archived { + .fa.fa-archive { + margin-right: 4px; + } + } + .screen-tab-inner { display: flex; flex-direction: row; @@ -127,18 +136,6 @@ flex-grow: 1; } - &.is-active { - border-top: none; - opacity: 1; - font-weight: var(--screentabs-selected-font-weight); - } - - &.is-archived { - .fa.fa-archive { - margin-right: 4px; - } - } - // Only one of these will be visible at a time .end-icons { // This adjusts the position of the icon to account for the default 8px margin on the parent. We want the positional calculations for this icon to assume it is flush with the edge of the screen tab.