Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion packages/docs/src/components/repl/repl-output-panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ export const ReplOutputPanel = ({ input, store }: ReplOutputPanelProps) => {
cy="50"
r="24"
stroke-width="4"
stroke="#daefff"
stroke-dasharray="37.69911184307752 37.69911184307752"
fill="none"
stroke-linecap="round"
Expand Down
2 changes: 2 additions & 0 deletions packages/docs/src/components/repl/repl.css
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@
height: 50px;
animation: rotating 1s linear infinite;
z-index: 10;
stroke: var(--qwik-blue);
}

@keyframes rotating {
Expand All @@ -171,6 +172,7 @@
transform: rotate(360deg);
}
}

.editor-container {
height: 100%;
}
Expand Down
4 changes: 0 additions & 4 deletions packages/docs/src/entry.cloudflare.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ import replServerHtml from '@repl-server-html';
export const onRequestGet: PagesFunction = async ({ request, next, waitUntil }) => {
try {
const url = new URL(request.url);
if (url.hostname === 'qwik.builder.io' && url.pathname === '/') {
// temporarily redirect homepage to the overview page
return Response.redirect(new URL('/docs/overview', url), 302);
}

if (url.pathname === '/docs') {
return Response.redirect(new URL('/docs/overview', url));
Expand Down