0026506543
- prettier's formatting has changed, so files needed to be reformatted - dart is spitting out deprecation warnings like: 254 │ 2: $spacer / 2, │ ^^^^^^^^^^^ ╵ bazel-out/darwin-fastbuild/bin/ts/sass/bootstrap/_variables.scss 254:6 @import ts/sass/button_mixins.scss 2:9 @use ts/components/ColorPicker.svelte 2:5 root stylesheet DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div($grid-gutter-width, 2)
27 lines
597 B
Svelte
27 lines
597 B
Svelte
<!--
|
|
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 | undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<nav {id} class={`pb-1 pt-1 ${className}`}>
|
|
<slot />
|
|
</nav>
|
|
|
|
<style lang="scss">
|
|
nav {
|
|
position: sticky;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 10;
|
|
|
|
background: var(--window-bg);
|
|
border-bottom: 1px solid var(--medium-border);
|
|
}
|
|
</style>
|