devel #195

Merged
inhji merged 3 commits from devel into main 2023-07-07 14:06:07 +02:00
2 changed files with 3 additions and 3 deletions

View file

@ -34,7 +34,7 @@
<%= @settings.custom_css %> <%= @settings.custom_css %>
</style> </style>
</head> </head>
<body class="bg-theme-background | h-feed hfeed"> <body class="text-theme-base bg-theme-background | h-feed hfeed">
<aside class="block"> <aside class="block">
<%= raw @settings.custom_html %> <%= raw @settings.custom_html %>
</aside> </aside>

View file

@ -11,13 +11,13 @@
<%= if @channel do %> <%= if @channel do %>
<section class="flex flex-col md:flex-row gap-3 mt-6 w-full px-3"> <section class="flex flex-col md:flex-row gap-3 mt-6 w-full px-3">
<div class="w-full mt-6 sm:w-auto flex flex-1 flex-col gap-1.5"> <div class="w-full mt-6 sm:w-auto flex flex-1 flex-col gap-1.5">
<h2 class="text-xl">Recently Updated</h2> <h2 class="text-xl text-theme-base">Recently Updated</h2>
<.note_list notes={@notes_updated} layout={@channel.layout} /> <.note_list notes={@notes_updated} layout={@channel.layout} />
</div> </div>
<div class="w-full mt-6 sm:w-auto flex flex-1 flex-col gap-1.5"> <div class="w-full mt-6 sm:w-auto flex flex-1 flex-col gap-1.5">
<h2 class="text-xl">Recently Published</h2> <h2 class="text-xl text-theme-base">Recently Published</h2>
<.note_list notes={@notes_published} layout={@channel.layout} /> <.note_list notes={@notes_published} layout={@channel.layout} />
</div> </div>