make border less monstruous

trunk
vilmibm 2020-11-24 21:26:34 -08:00
parent 050f861b0b
commit 8589aae749
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ function tableRender(tarot, table) {
function deckRender(deck) {
return function(elem) {
const width = deck.size;
const width = deck.size / 5;
elem.setAttribute("style", `float:left; height: 250px; width: 150px; border-left: 1px solid white; border-top: 1px solid white; border-bottom: ${width}px solid white; border-right: ${width}px solid white`);
}
}