1 parent baafe16 commit 7e2de84Copy full SHA for 7e2de84
1 file changed
src/base/deck/storage.js
@@ -21,7 +21,7 @@ onPage('Decks', function deckStorage() {
21
close() {},
22
};
23
let templastOpenedDialog;
24
- style.add('.btn-storage { margin-top: 5px; margin-right: 8px; width: 36px; }');
+ style.add('.btn-storage { margin-top: 5px; margin-right: 6px; width: 30px; padding: 5px 0; }');
25
26
function getFromLibrary(id, library, shiny) {
27
return library.find((card) => card.id === id && (shiny === undefined || card.shiny === shiny));
@@ -88,7 +88,7 @@ onPage('Decks', function deckStorage() {
88
processNext();
89
});
90
91
- for (let i = 1, x = Math.max(parseInt(settings.value('underscript.storage.rows'), 10), 1) * 4; i <= x; i++) {
+ for (let i = 1, x = Math.max(parseInt(settings.value('underscript.storage.rows'), 10), 1) * 5; i <= x; i++) {
92
buttons.push($('<button>')
93
.text(i)
94
.addClass('btn btn-sm btn-danger btn-storage'));
0 commit comments