Skip to content

Commit

Permalink
fix: refine problems
Browse files Browse the repository at this point in the history
  • Loading branch information
exKAZUu committed Sep 17, 2024
1 parent 8f1a26b commit 54ead5b
Show file tree
Hide file tree
Showing 3 changed files with 151 additions and 145 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ const ProblemComponent: React.FC<ProblemProps & { type: 'executionResult' | 'che
<VStack align="center" w="100%">
{type !== 'executionResult' && (
<Box textAlign="center" w="100%">
赤線の行の実行後の結果(注意:実行前ではなく実行後!)
赤線の行の<strong>実行後</strong>の結果(注意:実行前ではなく<strong>実行後</strong>!)
</Box>
)}
<TurtleGraphics
Expand All @@ -268,7 +268,9 @@ const ProblemComponent: React.FC<ProblemProps & { type: 'executionResult' | 'che
/>
{type !== 'executionResult' && problem.sidToLineIndex.get(problem.traceItems[beforeTraceItemIndex].sid) && (
<>
<Box>青色の行の実行後の結果(注意:実行前ではなく実行後!)</Box>
<Box>
青色の行の<strong>実行後</strong>の結果(注意:実行前ではなく<strong>実行後</strong>!)
</Box>
<TurtleGraphics
ref={turtleGraphicsRef}
beforeTraceItem={problem.traceItems[beforeTraceItemIndex]}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ export const Variables: React.FC<VariablesProps> = ({ traceItemVars }) => {
<VStack>
<TableContainer w="100%">
<Table variant="simple">
<TableCaption placement="top">青色の行の実行後のキャラクター</TableCaption>
<TableCaption placement="top">
青色の行の<strong>実行後</strong>のキャラクター
</TableCaption>
<Thead>
<Tr>
<Th>変数名</Th>
Expand All @@ -64,7 +66,9 @@ export const Variables: React.FC<VariablesProps> = ({ traceItemVars }) => {
</TableContainer>
<TableContainer mb="4" w="100%">
<Table variant="simple">
<TableCaption placement="top">青色の行の実行後の変数</TableCaption>
<TableCaption placement="top">
青色の行の<strong>実行後</strong>の変数
</TableCaption>
<Thead>
<Tr>
<Th>変数名</Th>
Expand Down
Loading

0 comments on commit 54ead5b

Please sign in to comment.