styling fixes
This commit is contained in:
@@ -209,7 +209,8 @@
|
|||||||
transition-duration: 500ms;
|
transition-duration: 500ms;
|
||||||
syntax: "*";
|
syntax: "*";
|
||||||
inherits: false;
|
inherits: false;
|
||||||
scrollbar-gutter: stable;
|
scrollbar-gutter: stable both-edges;
|
||||||
|
scrollbar-color: var(--color-text) var(--color-base);
|
||||||
}
|
}
|
||||||
|
|
||||||
::selection {
|
::selection {
|
||||||
|
|||||||
@@ -416,7 +416,10 @@ export function LeftBar() {
|
|||||||
onError={(e) => {
|
onError={(e) => {
|
||||||
// Fallback to full banner if thumbnail doesn't exist
|
// Fallback to full banner if thumbnail doesn't exist
|
||||||
const img = e.currentTarget;
|
const img = e.currentTarget;
|
||||||
if (img.src !== (post.banner_photo || "/blueprint.jpg")) {
|
if (
|
||||||
|
img.src !==
|
||||||
|
(post.banner_photo || "/blueprint.jpg")
|
||||||
|
) {
|
||||||
img.src = post.banner_photo || "/blueprint.jpg";
|
img.src = post.banner_photo || "/blueprint.jpg";
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
|
|||||||
@@ -691,7 +691,6 @@ pre {
|
|||||||
background: #0d0d0d;
|
background: #0d0d0d;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-family: "Source Code Pro", monospace;
|
font-family: "Source Code Pro", monospace;
|
||||||
padding: 0.75rem 1rem;
|
|
||||||
border-radius: 0.5rem;
|
border-radius: 0.5rem;
|
||||||
|
|
||||||
code {
|
code {
|
||||||
|
|||||||
@@ -106,7 +106,7 @@ export default function Home() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Life and Lineage */}
|
{/* Life and Lineage */}
|
||||||
<div class="border-surface0 flex w-full flex-col gap-2 rounded-md border-2 p-4 text-center xl:mr-4">
|
<div class="border-surface0 flex w-full flex-col gap-2 rounded-md border-2 p-4 text-center">
|
||||||
<div>My mobile game:</div>
|
<div>My mobile game:</div>
|
||||||
<a
|
<a
|
||||||
class="text-blue hover-underline-animation mx-auto w-fit"
|
class="text-blue hover-underline-animation mx-auto w-fit"
|
||||||
|
|||||||
Reference in New Issue
Block a user