Skip to content

Commit

Permalink
Change spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
Charlie Kapsiak committed Oct 17, 2024
1 parent 2c3d1b4 commit 7bd4619
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/routes/BarcodeBox.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@
$: is_valid = (regex === null) || regex.test(barcode);
</script>

<div class="box">
<div class="box p-6">
<div class="columns is-vcentered">
<div class="column is-one-third has-text-centered">
<span class="is-size-6 is-text-centered"> {component_type} </span>
<div class="mt-1 mb-1 pt-1 pb-1 block column is-one-third has-text-centered">
<span class="is-size-5 is-text-centered"> {component_type} </span>
</div>
<div class="column is-one-third has-text-centered">
<div class="mt-1 mb-1 pt-1 pb-1 block column is-one-third has-text-centered">
<span class="is-size-6"> {barcode} </span>
</div>
<div class="is-centered is-narrow">
<button class="button" on:click={requestScan}>
<div class="is-narrow">
<button class="button is-fullwidth" on:click={requestScan}>
{#if barcode === null}
Scan Barcode
{:else}
Expand Down

0 comments on commit 7bd4619

Please sign in to comment.