Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions rust-toolchain.toml

This file was deleted.

6 changes: 3 additions & 3 deletions src/components/aprende/books.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,13 +132,13 @@ fn Book(
view! {
<div class="flex gap-2 items-center bg-orange-200 rounded-md px-2 py-3">
<p class="font-work-sans text-black text-sm">
"ℹ️ Este Libro está marcado como incompleto"
"Este Libro está marcado como incompleto!"
</p>
</div>
}
})}
<div class="mx-auto">
<ButtonLink href=link size="big">
<div class="mx-auto text-center text-sm font-bold pt-14 sm:text-sm md:text-base lg:text-lg leading-tight">
<ButtonLink href=link size="big" class="p-8">
{link_text}
</ButtonLink>
</div>
Expand Down
7 changes: 6 additions & 1 deletion src/components/aprende/youtube.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,11 @@ fn YoutubeCard(
<h3 class="font-semibold">{title}</h3>
<p>{description}</p>
<div class="flex justify-center items-center gap-2">
<ButtonLink href=format!("https://www.youtube.com/@{}", username) size="tiny">
<ButtonLink
href=format!("https://www.youtube.com/@{}", username)
size="tiny"
class="p-2"
>
"Youtube"
</ButtonLink>
{if twitch {
Expand All @@ -77,6 +81,7 @@ fn YoutubeCard(
<ButtonLink
href=format!("https://www.twitch.tv/{}", username)
size="tiny"
class="p-2"
>
"Twitch"
</ButtonLink>
Expand Down
Loading