Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
nijamaDev committed Mar 24, 2023
2 parents a0061a2 + 6e5aa56 commit eb2d9eb
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 1 deletion.
3 changes: 3 additions & 0 deletions components/PageHead.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ export const PageHead: React.FC<
content='width=device-width, initial-scale=1, shrink-to-fit=no'
/>

<meta name="theme-color" media="(prefers-color-scheme: light)" content="#fefffe" key="theme-color-light"/>
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#2d3439" key="theme-color-dark"/>

<meta name='robots' content='index,follow' />
<meta property='og:type' content='website' />

Expand Down
2 changes: 1 addition & 1 deletion license
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 Travis Fischer
Copyright (c) 2023 Travis Fischer

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
22 changes: 22 additions & 0 deletions styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,25 @@ body {
color: var(--fg-color);
caret-color: var(--fg-color);
}

::-webkit-scrollbar
{
width: 5px;
height: 5px;
background-color: #F5F5F5;
background-color: var(--bg-color-1);
}

::-webkit-scrollbar-thumb
{
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: #555;
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: var(--fg-color-1);
}

::-webkit-scrollbar-track {
background-color: var(--bg-color);
}
4 changes: 4 additions & 0 deletions styles/notion.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
--notion-header-height: 54px;
}

.notion-frame {
padding: 0;
}

.notion-page {
padding-bottom: calc(max(5vh, 32px)) !important;
line-height: 1.65;
Expand Down

0 comments on commit eb2d9eb

Please sign in to comment.