anki/ts/components/StickyBottom.svelte

27 lines
609 B
Svelte
Raw Normal View History

2021-06-23 17:11:19 +02:00
<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<script lang="typescript">
export let id: string | undefined = undefined;
let className: string = "";
export { className as class };
</script>
<footer {id} class={`container-fluid pt-1 ${className}`}>
2021-06-23 17:11:19 +02:00
<slot />
</footer>
<style lang="scss">
footer {
2021-07-02 15:32:56 +02:00
position: fixed;
2021-06-23 17:11:19 +02:00
bottom: 0;
left: 0;
right: 0;
z-index: 10;
background: var(--window-bg);
border-top: 1px solid var(--medium-border);
}
</style>