Merge pull request #662 from dermotduffy/editor-spacing

Small editor spacing fix
This commit is contained in:
Dermot Duffy
2022-06-11 11:16:12 -07:00
committed by GitHub
+2 -2
View File
@@ -25,7 +25,6 @@
.values { .values {
background: var(--secondary-background-color); background: var(--secondary-background-color);
display: grid; display: grid;
margin-bottom: 10px;
} }
div.upgrade { div.upgrade {
width: auto; width: auto;
@@ -78,7 +77,8 @@ div.upgrade span {
// Nested menus should shrink width. // Nested menus should shrink width.
.submenu .submenu { .submenu .submenu {
width: calc(100% - 10px * 2); width: calc(100% - 10px * 2);
margin: auto; margin-left: auto;
margin-right: auto;
margin-bottom: 10px; margin-bottom: 10px;
} }
.submenu :not(.submenu.selected) { .submenu :not(.submenu.selected) {