click clear, match default refund border width
This commit is contained in:
parent
f4a7ba65eb
commit
a50d10185f
@ -3,7 +3,7 @@
|
|||||||
grid-area: vbox;
|
grid-area: vbox;
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-rows: 3fr minmax(min-content, 2fr);
|
grid-template-rows: 3fr minmax(min-content, 2fr);
|
||||||
grid-template-columns: 1fr 4fr 6fr min-content;
|
grid-template-columns: 1fr 4fr 6fr minmax(min-content, 2fr);;
|
||||||
grid-template-areas:
|
grid-template-areas:
|
||||||
"store-hdr store info-combiner combos"
|
"store-hdr store info-combiner combos"
|
||||||
"stash-hdr stash info-combiner combos";
|
"stash-hdr stash info-combiner combos";
|
||||||
@ -71,6 +71,7 @@
|
|||||||
button {
|
button {
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
letter-spacing: 0.15em;
|
letter-spacing: 0.15em;
|
||||||
|
border-width: 1px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -27,6 +27,9 @@ const addState = connect(
|
|||||||
|
|
||||||
function clearItems() {
|
function clearItems() {
|
||||||
dispatch(actions.setItemUnequip([]));
|
dispatch(actions.setItemUnequip([]));
|
||||||
|
dispatch(actions.setVboxCombiner(null));
|
||||||
|
dispatch(actions.setVboxHighlight(null));
|
||||||
|
dispatch(actions.setVboxInfo(null));
|
||||||
dispatch(actions.setVboxSelected({ storeSelect: [], stashSelect: [] }));
|
dispatch(actions.setVboxSelected({ storeSelect: [], stashSelect: [] }));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -15,7 +15,6 @@ function Combos(args) {
|
|||||||
// Static
|
// Static
|
||||||
itemInfo,
|
itemInfo,
|
||||||
instance, // Only used for tutorial check
|
instance, // Only used for tutorial check
|
||||||
// functions
|
|
||||||
} = args;
|
} = args;
|
||||||
|
|
||||||
if (tutorial && instance.time_control === 'Practice' && instance.rounds.length === 1) return false;
|
if (tutorial && instance.time_control === 'Practice' && instance.rounds.length === 1) return false;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user