ab6a68ec49
* Refactor out Placeholder from CardInfo.svelte * Add breakpoint parameter for Container - Use `Container` component inside `TitledContainer` * Build Item into Row - Use Row in DeckOptionsPage instead of just Item * Reengineer Container/Row/Col CSS * Inline Badges next to Labels when Lable spans multiple rows * Adjust margins for mobile * Implement Col component breakpoints * Move card-info to use new Container and Row components * Join StickyHeader and StickyFooter to StickyContainer * Remove default middle vertical-alignment for Badges again * Satisfy tests * Restore inline gutters in change-notetype Mapper * Add some comment to Col and Container * Fix breaking behavior in DeckOptionsPage when multi-column * Add back toolbar left padding to counter-act buttongroup right margins * Make Label in SwitchRow take more of available space
66 lines
1.6 KiB
Svelte
66 lines
1.6 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 Section from "./Section.svelte";
|
|
import type { Breakpoint } from "./types";
|
|
|
|
export let id: string | undefined = undefined;
|
|
let className: string = "";
|
|
export { className as class };
|
|
|
|
/* width: 100% if viewport < breakpoint otherwise with gutters */
|
|
export let breakpoint: Breakpoint | "fluid" = "fluid";
|
|
export let api: Record<string, never> | undefined = undefined;
|
|
</script>
|
|
|
|
<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"}
|
|
>
|
|
<Section {api}>
|
|
<slot />
|
|
</Section>
|
|
</div>
|
|
|
|
<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>
|