Skip to content

Commit a23ed86

Browse files
committed
Fix DYA content styles
1 parent 25a4fbb commit a23ed86

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

assets/css/markdown.css

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,8 @@ latex-js, .markdown code.inline {
4646
@apply p-4 w-full;
4747
}
4848

49-
50-
.markdown a {
51-
@apply mt-6;
49+
.markdown pre code {
50+
@apply bg-gray-800 block w-full p-4 my-10 rounded-lg
5251
}
5352

5453
.markdown li {
@@ -71,4 +70,5 @@ latex-js, .markdown code.inline {
7170

7271
.markdown td a {
7372
text-decoration: underline;
74-
}
73+
}
74+

lib/elixir_newbie/academy_content/lesson.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ defmodule ElixirNewbie.AcademyContent.Lesson do
3737
end
3838

3939
defp latex_expressions(text) do
40-
Regex.replace(~r/\$(.|\n)*\$/U, text, fn full ->
40+
Regex.replace(~r/\$.*\$/U, text, fn full ->
4141
"""
4242
<latex-js>
4343
#{full}

lib/elixir_newbie/podcast.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ defmodule ElixirNewbie.Podcast do
33
Podcast Context
44
"""
55

6+
alias ElixirNewbie.Podcast.Formatter
67
alias ElixirNewbie.Podcast.PodcastAPI
78
alias ElixirNewbie.Podcast.PodcastEpisode
8-
alias ElixirNewbie.Podcast.Formatter
99

1010
@doc """
1111
List all podcast episodes as PodcastEpisode structs.

lib/elixir_newbie_web/components/layouts/root.html.heex

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import { LaTeXJSComponent } from "https://cdn.jsdelivr.net/npm/latex.js/dist/latex.mjs"
2020
customElements.define("latex-js", LaTeXJSComponent)
2121
</script>
22+
<link href="https://cdn.jsdelivr.net/npm/remixicon@3.0.0/fonts/remixicon.css" rel="stylesheet">
2223
</head>
2324
<body class="bg-black bg-no-repeat bg-cover bg-top antialiased font-serif min-h-screen">
2425
<%= @inner_content %>

lib/elixir_newbie_web/live/content_live.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ defmodule ElixirNewbieWeb.ContentLive do
55
~H"""
66
<section class="min-h-screen bg-black text-white">
77
<.navigation />
8-
<section class="mx-auto w-2/3">
8+
<section class="mx-auto w-2/3 pb-24">
99
<a class="mb-10 block rounded-lg bg-gray-500 p-6 text-2xl hover:opacity-75" href={@badge_url}>Run in Livebook</a>
1010
<div class="markdown">
1111
<%= raw @lesson.body%>

0 commit comments

Comments
 (0)