diff options
Diffstat (limited to 'app/components/topic')
| -rw-r--r-- | app/components/topic/topic.svelte | 8 |
1 files changed, 2 insertions, 6 deletions
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; } |