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>
|
|
|
|
|
2021-06-25 17:13:06 +02:00
|
|
|
<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>
|