feat(#23): whitespace

This commit is contained in:
OllyNicholass
2024-02-11 18:38:18 +00:00
parent daf20b5139
commit 6fb0cf379d
+15 -19
View File
@@ -91,22 +91,18 @@
let disableEstimates: boolean = false; let disableEstimates: boolean = false;
let audioElement; let audioElement;
let showFireworks = false; let showFireworks = false;
let fireworks: Fireworks let fireworks: Fireworks;
let fireworkOptions: FireworksOptions = { let fireworkOptions: FireworksOptions = {
opacity: 0.5, opacity: 0.5,
sound: { sound: {
enabled: true, enabled: true,
files: [ files: ['/sounds/explosion0.mp3', '/sounds/explosion1.mp3', '/sounds/explosion2.mp3'],
'/sounds/explosion0.mp3', volume: {
'/sounds/explosion1.mp3', min: 1,
'/sounds/explosion2.mp3' max: 2
], }
volume: {
min: 1,
max: 2
}
} }
} };
let selectedCardSet; let selectedCardSet;
function closeModal() { function closeModal() {
@@ -394,11 +390,11 @@
} }
.launch-pad { .launch-pad {
position: fixed; position: fixed;
top: 0; top: 0;
z-index: -1; z-index: -1;
pointer-events: none; pointer-events: none;
left: 0; left: 0;
right: 0; right: 0;
} }
</style> </style>