@import "./colors.css"; :root { --heading-font: "Space Mono", system-ui; --body-font: "IBM Plex Sans", system-ui; --color-brand: #02ff00; --color-brand-muted: rgb(2, 150, 0); --padding-horizontal: 90px; --page-background: black; --page-background-alpha: rgba(0, 0, 0, 0.8); --result__background-color: black; --result__primary-color: var(--color-brand); --result__foreground-color: white; --result__muted-color: rgb(165, 165, 165); --card-width: 352px; --page-width: 1152px; --snippets_container-background-unfocused: #171717; --snippets_container-background-focused: #0017e9; --snippets_container-background: var( --snippets_container-background-unfocused ); --snippets_container-muted-color: rgb(153, 153, 153); } body { color: white; margin: 0; padding: 0; font-family: var(--body-font); background-color: var(--page-background); color: var(--result__muted-color); display: flex; flex-direction: column; height: 100%; } #reactroot, #__next, body, html { height: 100%; } .RenderCounter { border: 10px solid var(--snippets_container-background-focused); margin: 10px; padding: 10px; animation: flash 0.2s linear; animation-fill-mode: forwards; } .RenderCounter-meta { display: flex; flex-direction: row; justify-content: space-between; margin: -10px; padding: 10px; background-color: #111; } .RenderCounter-lastRender, .RenderCounter-title { white-space: nowrap; color: rgb(153, 153, 153); } @keyframes flash { from { border-color: var(--snippets_container-background-focused); } to { border-color: var(--snippets_container-background-unfocused); } } .Button { display: block; border: 1px solid rgb(20, 180, 0); background-color: rgb(2, 150, 0); color: white; font-weight: 500; padding: 10px 12px; border-radius: 4px; text-transform: uppercase; text-align: center; width: fit-content; cursor: pointer; } -abort-signal-rebased Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/examples/react-fast-refresh-test/src (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2022-02-24[bun install] Add integration test for bin linksGravatar Jarred Sumner 1-1/+7
2022-02-24Add WASM modules but disable it for nowGravatar Jarred Sumner 28-134/+530
2022-02-24bump build idGravatar Jarred Sumner 1-1/+1
2022-02-24fix test failure in path.resolveGravatar Jarred Sumner 1-2/+6
2022-02-24Ensure we run the process testGravatar Jarred Sumner 2-48/+54
2022-02-24Update javascript.zigGravatar Jarred Sumner 1-1/+110
2022-02-24[bun.js] Add `ShadowRealm`Gravatar Jarred Sumner 7-18/+70
2022-02-24[bun-framework-next] Remove TextEncoder & TextDecoder polyfillsGravatar Jarred Sumner 3-340/+19
2022-02-24Use a JSFinalobject for PathGravatar Jarred Sumner 2-81/+42
2022-02-24Expose TextEncoder & TextDecoder globallyGravatar Jarred Sumner 3-20/+750
2022-02-24[Web Platform] Implement TextEncoder & TextDecoderGravatar Jarred Sumner 12-358/+1044
2022-02-24move GCDeferralContextGravatar Jarred Sumner 2-18/+24
2022-02-24[JS Parser] ensure assertions are never run at runtimeGravatar Jarred Sumner 1-13/+18
2022-02-24misc cleanupGravatar Jarred Sumner 2-7/+18
2022-02-22Make format consistent with WebKitGravatar Jarred Sumner 20-3596/+4110
2022-02-22import assertion testGravatar Jarred Sumner 1-0/+33
2022-02-22snaspshotsGravatar Jarred Sumner 42-94/+113