Skip to content

Commit

Permalink
Use bottom instead of transform to hide minimized modal (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
kangasta committed Jun 15, 2024
1 parent 2db0e91 commit b392c32
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions src/components/MinimizeableModal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,34 +5,31 @@
export let title: string;
export let position: "left" | "center" = "center";
let modalOpen = true;
let minOpen = false;
let open = true;
const onClose = () => {
modalOpen = false;
setTimeout(() => (minOpen = true), 25);
open = false;
};
const onOpen = () => {
minOpen = false;
setTimeout(() => (modalOpen = true), 100);
open = true;
};
</script>

{#if modalOpen}
{#if open}
<Modal {title} {position} closeIcon="Minimize" on:close={onClose}>
<slot />
</Modal>
{/if}
<button class="minimized-modal {minOpen ? 'open' : ''}" on:click={onOpen}>
<button class="minimized-modal {open ? '' : 'open'}" on:click={onOpen}>
<Icon icon="OpenModal" />
<span class="title">{title}</span>
</button>

<style lang="sass">
.minimized-modal
position: fixed
bottom: -1rem
bottom: -4rem
right: 1.5rem
z-index: 2
Expand All @@ -50,11 +47,10 @@
box-shadow: 0 0 1rem rgba(0, 0, 0, 0.75)
transition: transform 100ms, box-shadow 100ms
transform: translateY(110%)
transition: bottom 125ms, box-shadow 125ms, transform 125ms
&.open
transform: translateY(0)
bottom: -1rem
&:hover
transform: translateY(-0.15rem)
Expand Down

0 comments on commit b392c32

Please sign in to comment.