Skip to content

Commit

Permalink
Fix Top Apps editor margins
Browse files Browse the repository at this point in the history
  • Loading branch information
krlvm committed Jan 27, 2022
1 parent 528f4f5 commit 9d8cdb0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions BeautySearch/TopAppsEditor.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@

#table-wrapper {
flex-grow: 1;
margin: 12px 0 12px 2px;
margin: 0 8px 4px 8px;
display: flex;
flex-direction: column;
overflow-y: auto;
overflow-x: hidden;
border-bottom: 0.1px solid rgb(36, 36, 36);
border: 0.1px solid rgb(36, 36, 36);
}

#apps-table {
Expand Down Expand Up @@ -130,7 +130,7 @@
var table = document.getElementById('apps-table');
for (var i = 0; i < apps.length; i++) {
var app = apps[i];
var style = i == 4 ? ' style="border-bottom: 3px double darkblue !important"' : '';
var style = i == 4 ? ' style="border-bottom: 3px solid darkblue !important"' : '';
var icon = app.icon != null ? app.icon : 'Qk1CAAAAAAAAAD4AAAAoAAAAAQAAAAEAAAABAAEAAAAAAAQAAAB0EgAAdBIAAAAAAAAAAAAAAAAAAP///wCAAAAA';
table.innerHTML += '<tr class="app-row"' + style + '><td data-id="' + app.id + '"><img class="app-icon" src="data:image/png;base64,' + app.icon + '"/>' + app.name + '</td></tr>'
}
Expand Down

0 comments on commit 9d8cdb0

Please sign in to comment.