Skip to content

Commit

Permalink
Update outlines
Browse files Browse the repository at this point in the history
  • Loading branch information
colebemis committed Dec 15, 2024
1 parent 2e56b32 commit d56104d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/github-avatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export function GitHubAvatar({ login, size = 32, className, style, ...props }: G
<div
aria-hidden
className={cx(
"inline-block size-icon flex-shrink-0 rounded-full bg-[white] bg-cover ring-1 ring-inset ring-border-secondary",
"inline-block size-icon flex-shrink-0 rounded-full bg-[white] bg-cover ring-1 ring-inset ring-border-secondary 2x:ring-[0.5px]",
className,
)}
style={{
Expand Down
2 changes: 1 addition & 1 deletion src/components/markdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ function MarkdownContent({ children, className }: { children: string; className?
function BookCover({ isbn }: { isbn: string }) {
return (
<a
className="focus-ring inline-block aspect-[2/3] h-20 rounded-sm bg-bg-secondary bg-cover bg-center shadow-sm ring-1 ring-inset ring-border-secondary transition-[box-shadow] hover:shadow-md"
className="focus-ring inline-block aspect-[2/3] h-20 rounded-sm bg-bg-secondary bg-cover bg-center shadow-sm ring-1 ring-inset ring-border-secondary transition-[box-shadow] hover:shadow-md 2x:ring-[0.5px]"
href={`https://openlibrary.org/isbn/${isbn}`}
target="_blank"
rel="noopener noreferrer"
Expand Down
2 changes: 1 addition & 1 deletion src/components/note-favicon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const NoteFavicon = React.memo(
icon = (
<div
data-testid="favicon-isbn"
className="focus-ring inline-block aspect-[3/4] h-icon rounded-[2px] bg-bg-secondary bg-cover bg-center shadow-sm ring-1 ring-inset ring-border-secondary"
className="focus-ring inline-block aspect-[3/4] h-icon rounded-[2px] bg-bg-secondary bg-cover bg-center shadow-sm ring-1 ring-inset ring-border-secondary 2x:ring-[0.5px]"
style={{
backgroundImage: `url(https://covers.openlibrary.org/b/isbn/${note.frontmatter.isbn}-S.jpg)`,
}}
Expand Down

0 comments on commit d56104d

Please sign in to comment.