2021-05-29 17:01:56 +02:00
|
|
|
<!--
|
|
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
-->
|
|
|
|
<script lang="ts">
|
2021-11-17 04:49:52 +01:00
|
|
|
import type { Breakpoint } from "./types";
|
2021-05-29 17:01:56 +02:00
|
|
|
|
|
|
|
export let id: string | undefined = undefined;
|
|
|
|
let className: string = "";
|
|
|
|
export { className as class };
|
|
|
|
|
2021-11-17 04:49:52 +01:00
|
|
|
/* width: 100% if viewport < breakpoint otherwise with gutters */
|
|
|
|
export let breakpoint: Breakpoint | "fluid" = "fluid";
|
2021-05-29 17:01:56 +02:00
|
|
|
</script>
|
|
|
|
|
2021-11-17 04:49:52 +01:00
|
|
|
<div
|
|
|
|
{id}
|
|
|
|
class="container {className}"
|
|
|
|
class:container-xs={breakpoint === "xs"}
|
|
|
|
class:container-sm={breakpoint === "sm"}
|
|
|
|
class:container-md={breakpoint === "md"}
|
|
|
|
class:container-lg={breakpoint === "lg"}
|
|
|
|
class:container-xl={breakpoint === "xl"}
|
|
|
|
class:container-xxl={breakpoint === "xxl"}
|
|
|
|
class:container-fluid={breakpoint === "fluid"}
|
|
|
|
>
|
2022-02-03 05:52:11 +01:00
|
|
|
<slot />
|
2021-05-29 17:01:56 +02:00
|
|
|
</div>
|
2021-11-17 04:49:52 +01:00
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
@use "sass/breakpoints";
|
|
|
|
|
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: var(--container-direction, column);
|
|
|
|
|
|
|
|
padding: var(--gutter-block, 0) var(--gutter-inline, 0);
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
&.container-fluid {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@include breakpoints.with-breakpoints-upto(
|
|
|
|
"container",
|
|
|
|
(
|
|
|
|
"max-width": (
|
|
|
|
"xs": 360px,
|
|
|
|
"sm": 540px,
|
|
|
|
"md": 720px,
|
|
|
|
"lg": 960px,
|
|
|
|
"xl": 1140px,
|
|
|
|
"xxl": 1320px,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
</style>
|