mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 12:50:01 +00:00
web/updates: revert div -> main to fix html hierarchy
This commit is contained in:
parent
0d34bc0ab3
commit
19ee8360c4
1 changed files with 6 additions and 2 deletions
|
@ -70,7 +70,7 @@
|
||||||
|
|
||||||
<svelte:window on:keydown={handleKeydown} />
|
<svelte:window on:keydown={handleKeydown} />
|
||||||
|
|
||||||
<main class="news" data-first-focus tabindex="-1">
|
<div class="news" data-first-focus tabindex="-1">
|
||||||
{#if changelog}
|
{#if changelog}
|
||||||
<div id="left-button" class="button-wrapper-desktop">
|
<div id="left-button" class="button-wrapper-desktop">
|
||||||
{#if prev}
|
{#if prev}
|
||||||
|
@ -125,7 +125,7 @@
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
</main>
|
</div>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.news {
|
.news {
|
||||||
|
@ -135,6 +135,10 @@
|
||||||
justify-content: space-evenly;
|
justify-content: space-evenly;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.news:focus-visible {
|
||||||
|
box-shadow: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
.button-wrapper-desktop {
|
.button-wrapper-desktop {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
Loading…
Reference in a new issue