We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffc5d32 commit 6658ad1Copy full SHA for 6658ad1
app/terminal/page.tsx
@@ -23,7 +23,7 @@ export default function RuntimeTestPage() {
23
24
<Heading level={2}>REPLとコード実行のサンプル</Heading>
25
{/* name of each tab group should be unique */}
26
- <div className="tabs tabs-border">
+ <div className="tabs tabs-box">
27
{Object.entries(sampleConfig).map(([lang, config]) => (
28
<Fragment key={lang}>
29
<input
@@ -32,7 +32,7 @@ export default function RuntimeTestPage() {
32
className="tab"
33
aria-label={lang}
34
/>
35
- <div className="tab-content border-base-300 bg-base-200 p-4">
+ <div className="tab-content border-base-300 bg-base-100">
36
<RuntimeSample lang={lang as RuntimeLang} config={config} />
37
</div>
38
</Fragment>
0 commit comments