Skip to content

Commit

Permalink
switch sides
Browse files Browse the repository at this point in the history
  • Loading branch information
LukaHarambasic committed Feb 12, 2024
1 parent c4ccb5e commit 8995589
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/components/Entries/Entries.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
</script>

<section>
<slot name="sidebar" />
<div class="entries">
<slot name="entries" />
</div>
<slot name="sidebar" />
<div class="rss rich-text">
<p>
<a href={rssPath}>RSS Feed</a>
Expand All @@ -20,12 +20,12 @@
section {
display: grid;
grid-template-rows: auto auto auto;
grid-template-columns: 1fr 70ch;
grid-template-columns: 70ch 1fr;
column-gap: var(--l);
row-gap: var(--l);
width: 100%;
@media screen and (max-width: 74rem) {
grid-template-columns: 18rem 1fr;
grid-template-columns: 1fr 18rem;
}
@media screen and (max-width: 50rem) {
grid-template-columns: 1fr;
Expand Down

0 comments on commit 8995589

Please sign in to comment.