mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00

* Update amd64 docker container to Debian 11 This bumps the minimum required glibc to 2.29, which is 2019 Ubuntu/Fedora, and 2021 Debian. Also remove the unused download of ninja * Update to latest dprint Unblocked by the glibc upgrade
55 lines
1.4 KiB
Svelte
55 lines
1.4 KiB
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<script lang="ts">
|
|
import type { Breakpoint } from "./types";
|
|
|
|
let className: string = "";
|
|
export { className as class };
|
|
|
|
/* flex-basis: 100% if viewport < breakpoint otherwise
|
|
* as specified by --cols and --col-size */
|
|
export let breakpoint: Breakpoint = "xs";
|
|
</script>
|
|
|
|
<div
|
|
class="col {className}"
|
|
class:col-xs={breakpoint === "xs"}
|
|
class:col-sm={breakpoint === "sm"}
|
|
class:col-md={breakpoint === "md"}
|
|
class:col-lg={breakpoint === "lg"}
|
|
class:col-xl={breakpoint === "xl"}
|
|
class:col-xxl={breakpoint === "xxl"}
|
|
>
|
|
<slot />
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
@use "../sass/breakpoints" as bp;
|
|
|
|
.col {
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
align-items: var(--col-align, flex-start);
|
|
justify-content: var(--col-justify, flex-start);
|
|
padding: 0 var(--gutter-inline, 0);
|
|
flex: 1 0 100%;
|
|
}
|
|
|
|
$calc: calc(100% / var(--cols, 1) * var(--col-size, 1));
|
|
|
|
@include bp.with-breakpoints(
|
|
"col",
|
|
(
|
|
"flex-basis": (
|
|
"xs": $calc,
|
|
"sm": $calc,
|
|
"md": $calc,
|
|
"lg": $calc,
|
|
"xl": $calc,
|
|
"xxl": $calc,
|
|
),
|
|
)
|
|
);
|
|
</style>
|