pinafore/src/routes/_components/compose/ComposeMedia.html
Nolan Lawson 4bd181d3cc
fix: update Sapper to latest (#775)
* fix: update to latest sapper

fixes #416

* fix error and debug pages

* requestIdleCallback makes column switching feel way nicer than double rAF

* add export feature

* add better csp info

* workaround for sapper sub-page issue

* clarify in readme about exporting

* fix now config

* switch from rIC to triple raf

* style-loader is no longer used

* update theming guide
2018-12-11 07:31:48 -08:00

31 lines
No EOL
729 B
HTML

{#if media.length}
<div class="compose-media-container" style="grid-template-columns: repeat({media.length}, 1fr);">
{#each media as mediaItem, index}
<ComposeMediaItem {realm} {mediaItem} {index} {media} />
{/each}
</div>
{/if}
<style>
.compose-media-container {
grid-area: media;
display: grid;
grid-column-gap: 5px;
align-items: center;
justify-content: center;
margin-top: 10px;
background: var(--form-bg);
padding: 5px;
border-radius: 4px;
}
</style>
<script>
import { store } from '../../_store/store'
import ComposeMediaItem from './ComposeMediaItem.html'
export default {
store: () => store,
components: {
ComposeMediaItem
}
}
</script>