left-sidebar: Align action container properly.

This commit is contained in:
Akash Nimare
2018-02-26 18:09:42 +05:30
parent 5c45ab7b66
commit c11089027c
2 changed files with 9 additions and 3 deletions

View File

@@ -81,11 +81,18 @@ body {
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
} }
#actions-container {
display: flex;
flex-direction: column;
position: fixed;
bottom: 0;
width: inherit;
}
.action-button { .action-button {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; padding: 12px;
padding: 10px;
} }
.action-button:hover { .action-button:hover {

View File

@@ -294,7 +294,6 @@ class ServerManagerView {
try { try {
this.tabs[index].webview.canGoBackButton(); this.tabs[index].webview.canGoBackButton();
} catch (err) { } catch (err) {
console.log(err);
} }
this.activeTabIndex = index; this.activeTabIndex = index;