mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
* docs: remove .bx--content override * docs(ui-shell): add note on UI Shell theming * docs(grid): touch up grid examples * docs(theme): wrap localStorage in try catch So that the site still works in Safari with all cookies blocked. * docs: use prefixed all.css Without vendor prefixes, some styles are lost in Safari. * docs: remove svelte-preprocess from svelte.config.js
7 lines
164 B
Svelte
7 lines
164 B
Svelte
<script lang="ts">
|
|
import { AspectRatio, Tile } from "../types";
|
|
</script>
|
|
|
|
<AspectRatio ratio="16x9">
|
|
<Tile style="height: 100%">Content</Tile>
|
|
</AspectRatio>
|