Skip to content

Commit

Permalink
feat(client): make review bar more visible
Browse files Browse the repository at this point in the history
  • Loading branch information
fushar committed Nov 4, 2023
1 parent fbf66ba commit 7f24a07
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export function ProblemReviewCard({ alias, statement: { title }, editorial: { te
return (
<div class="programming-problem-worksheet">
<ContentCard>
<Tag intent={Intent.SUCCESS}>REVIEW</Tag>
<Tag intent={Intent.SUCCESS} style={{ width: '100%' }}></Tag>
<h2 className="programming-problem-statement__name">
{alias ? `${alias}. ` : ''}
{title}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { ProblemReviewCard } from '../../../../../../../../../../components/Prob

import './ChapterProblemStatementPage.scss';

export function ChapterProblemStatementPage({ worksheet }) {
function ChapterProblemStatementPage({ worksheet }) {
const renderStatementLanguageWidget = () => {
const { defaultLanguage, languages } = worksheet;
if (!defaultLanguage || !languages) {
Expand Down Expand Up @@ -42,7 +42,7 @@ export function ChapterProblemStatementPage({ worksheet }) {
return (
<details>
<summary>
<small>View problem statement</small>
<small>Problem statement</small>
</summary>
<ProblemWorksheetCard alias={problem.alias} worksheet={worksheet.worksheet} showTitle={false} />
</details>
Expand Down

0 comments on commit 7f24a07

Please sign in to comment.