We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ee58ed commit 5133c42Copy full SHA for 5133c42
1 file changed
src/components/About.tsx
@@ -47,7 +47,7 @@ export default function About({
47
different take on conventional pastebin sites like pastebin.com or
48
hastebin.
49
</p>
50
- {window.location.hostname === 'pastes.dev' && (
+ {window.location.hostname === 'localhost' && (
51
<>
52
<p>
53
<b>pastes.dev</b> is the official, publicly accessible paste
@@ -166,12 +166,13 @@ const AboutPanel = styled.div`
166
left: 50%;
167
transform: translate(-50%, -50%);
168
z-index: 99;
169
+ padding: 10px;
170
max-width: 650px;
171
+ max-height: 100vh;
172
+ overflow-y: auto;
173
174
color: ${props => props.theme.primary};
175
background-color: ${props => props.theme.secondary};
-
- padding: 10px;
176
`;
177
178
const BannerContainer = styled.div`
0 commit comments