1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Thinner bottom bar (#747)

* Making bottom bar slightly thinner

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>

* Moving workspace selector to left

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2020-08-26 11:32:15 +03:00 committed by GitHub
parent 886fba136a
commit 510d3d4760
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
font-size: $font-size-small;
background-color: #3d90ce;
padding: $spacing $padding;
padding: $padding / 4 $padding;
color: white;
#current-workspace {

View File

@ -11,7 +11,7 @@ export class BottomBar extends React.Component {
const { currentWorkspace } = workspaceStore;
return (
<div className="BottomBar flex gaps">
<div id="current-workspace" className="flex gaps align-center box right">
<div id="current-workspace" className="flex gaps align-center box">
<Icon small material="layers"/>
<span className="workspace-name">{currentWorkspace.name}</span>
</div>