Skip to content

Commit eb2d9eb

Browse files
author
nijama
committed
Merge remote-tracking branch 'upstream/main'
2 parents a0061a2 + 6e5aa56 commit eb2d9eb

File tree

4 files changed

+30
-1
lines changed

4 files changed

+30
-1
lines changed

components/PageHead.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ export const PageHead: React.FC<
2929
content='width=device-width, initial-scale=1, shrink-to-fit=no'
3030
/>
3131

32+
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#fefffe" key="theme-color-light"/>
33+
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#2d3439" key="theme-color-dark"/>
34+
3235
<meta name='robots' content='index,follow' />
3336
<meta property='og:type' content='website' />
3437

license

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 Travis Fischer
3+
Copyright (c) 2023 Travis Fischer
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

styles/global.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,25 @@ body {
3838
color: var(--fg-color);
3939
caret-color: var(--fg-color);
4040
}
41+
42+
::-webkit-scrollbar
43+
{
44+
width: 5px;
45+
height: 5px;
46+
background-color: #F5F5F5;
47+
background-color: var(--bg-color-1);
48+
}
49+
50+
::-webkit-scrollbar-thumb
51+
{
52+
border-radius: 10px;
53+
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
54+
background-color: #555;
55+
border-radius: 10px;
56+
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
57+
background-color: var(--fg-color-1);
58+
}
59+
60+
::-webkit-scrollbar-track {
61+
background-color: var(--bg-color);
62+
}

styles/notion.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
--notion-header-height: 54px;
1313
}
1414

15+
.notion-frame {
16+
padding: 0;
17+
}
18+
1519
.notion-page {
1620
padding-bottom: calc(max(5vh, 32px)) !important;
1721
line-height: 1.65;

0 commit comments

Comments
 (0)