Compare commits

..

No commits in common. "ee4b2c0cedc38c9b178a3b01b13020d723ad2964" and "986bb9ffee2bea6e200e1c1d3195180c1287bc43" have entirely different histories.

2 changed files with 3 additions and 9 deletions

View file

@ -12,8 +12,7 @@ pub struct ArticleData {
#[component]
pub fn Article(data: ArticleData) -> impl IntoView {
view! {
// Shadow styling is in main .css file
<article class="p-7 my-5 mx-auto w-11/12 max-w-screen-xl bg-opacity-10 rounded-md bg-zinc-700">
<article class="p-7 my-5 mx-auto w-11/12 max-w-screen-xl bg-opacity-10 rounded-md bg-zinc-700 shadow-1g">
<h1 class="text-3xl font-light text-orange-600 capitalize max-6-xs">{&data.title}</h1>
<hr class="opacity-50"/>
<span class="pt-0 pb-3.5 text-xs opacity-50 m-t">{&data.date}</span>

View file

@ -19,11 +19,6 @@ nav li:has(> a[aria-current="page"]) {
@apply border-b-orange-700 border-b-2;
}
/* Shadows don't work inline for some reason */
article {
@apply shadow-lg shadow-black;
}
/* for innerHTML articles */
article p {
@apply mt-5 indent-4;
@ -81,9 +76,9 @@ article ol {
}
.code-block {
@apply bg-black bg-opacity-50 p-3 rounded-lg shadow-lg shadow-black max-w-fit m-auto;
@apply bg-black bg-opacity-40 p-3 rounded-lg shadow-lg shadow-black;
}
.code-block-inner {
@apply p-2 mt-2 text-sm border-t-gray-500 overflow-x-scroll border-t-2;
@apply p-2;
}