diff options
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> - |