Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Commit c4021cc

Browse files
authored
Merge pull request #110 from PRIME-TU-Delft/development
Development
2 parents 6543a3c + b7a63a0 commit c4021cc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+1775
-1721
lines changed

src/lib/components/Button.svelte

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,8 @@
2020
2121
</script>
2222

23-
2423
<!-- Markup -->
2524

26-
2725
{#if href === undefined}
2826

2927
<button
@@ -82,6 +80,9 @@
8280
cursor: pointer
8381
transition: all $default-transition
8482
83+
& > :global(*)
84+
pointer-events: none
85+
8586
&.dangerous
8687
background: $red
8788

src/lib/components/Dropdown.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
<div class="options" use:focusFirstChild use:loopFocus>
9999
{#if options.length >= 5}
100100
<div class="option searchbar">
101-
<input type="search" placeholder="Search..." bind:value={query} use:focusOnKeydown>
101+
<input type="text" placeholder="Search..." bind:value={query} use:focusOnKeydown>
102102
<img src={searchIcon} alt="Searchbar" />
103103
</div>
104104
{/if}

0 commit comments

Comments
 (0)