diff options
| author | Ben Beltran <ben@nsovocal.com> | 2020-03-22 11:53:13 -0600 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2020-03-22 11:53:13 -0600 |
| commit | 3841606684ee3d233266ad490905076a3562842c (patch) | |
| tree | 407adde62e5181cae2b0d3611bc6c18c00a20d67 /app/components | |
| parent | 00a6e8aa8dd06f8a2bd7ccccdccfcb6215cf4841 (diff) | |
Remove server
Diffstat (limited to 'app/components')
| -rw-r--r-- | app/components/post/post.svelte | 4 | ||||
| -rw-r--r-- | app/components/topic/topic.svelte | 8 | ||||
| -rw-r--r-- | app/components/topic_index/topic_index.svelte | 1 |
3 files changed, 2 insertions, 11 deletions
diff --git a/app/components/post/post.svelte b/app/components/post/post.svelte index 429dfd6..fad7628 100644 --- a/app/components/post/post.svelte +++ b/app/components/post/post.svelte @@ -19,10 +19,6 @@ <hr/> <style> - article, hr, aside { - grid-column: col-start 2 / span 11; - } - .post-meta > * { vertical-align: top; } diff --git a/app/components/topic/topic.svelte b/app/components/topic/topic.svelte index c2462fd..4a55930 100644 --- a/app/components/topic/topic.svelte +++ b/app/components/topic/topic.svelte @@ -2,7 +2,7 @@ import Glyph from '../glyph/glyph.svelte'; </script> -<main class="h-entry" title="Topic"> +<div class="h-entry" title="Topic"> <h1 class="p-name">This is a post in the forum.</h1> <aside class="topic-meta" title="Topic metadata"> <span class="topic-location">Posted on <a href="/f/interaction" @@ -48,13 +48,9 @@ <p>It's just how it is...</p> </article> <hr/> -</main> +</div> <style> - main { - grid-column: col-start 2 / span 11; - } - .post-meta > * { vertical-align: top; } diff --git a/app/components/topic_index/topic_index.svelte b/app/components/topic_index/topic_index.svelte index 699550e..ea748a6 100644 --- a/app/components/topic_index/topic_index.svelte +++ b/app/components/topic_index/topic_index.svelte @@ -4,4 +4,3 @@ <h1>Topic Index.</h1> <p>This component lists topics for category or tag with id: {params.id}</p> - |