Skip to content

Commit

Permalink
feat: UI improvements
Browse files Browse the repository at this point in the history
- Minor fix for Back to My Records button
- Decrease font size for the Questions about Learner Records title
- Send Program Record modal window - checkboxes alignment
  • Loading branch information
Lunyachek committed Apr 4, 2024
1 parent 323ea5d commit e1accfe
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 19 deletions.
29 changes: 12 additions & 17 deletions src/components/ProgramRecord/ProgramRecord.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import PropTypes from 'prop-types';
import { useParams } from 'react-router-dom';

import {
Info, ArrowBack,
Info, ChevronLeft,
} from '@openedx/paragon/icons';
import {
Alert, Container, Button, Hyperlink,
Alert, Container, Hyperlink,
} from '@openedx/paragon';

import { FormattedMessage } from '@edx/frontend-platform/i18n';
Expand Down Expand Up @@ -76,22 +76,17 @@ function ProgramRecord({ isPublic }) {
};

const renderBackButton = () => (
<Button
variant="tertiary"
iconBefore={ArrowBack}
className="back-to-records"
<Hyperlink
destination={createCorrectInternalRoute('/')}
variant="muted"
>
<Hyperlink
destination={createCorrectInternalRoute('/')}
variant="muted"
>
<FormattedMessage
id="link.back.to.records"
defaultMessage="Back to My Records"
description="A link that takes the user back to their program records"
/>
</Hyperlink>
</Button>
<ChevronLeft />
<FormattedMessage
id="link.back.to.records"
defaultMessage="Back to My Records"
description="A link that takes the user back to their program records"
/>
</Hyperlink>
);

const renderProgramDetails = () => (
Expand Down
4 changes: 2 additions & 2 deletions src/components/ProgramRecord/RecordsHelp.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ import { Hyperlink } from '@openedx/paragon';
function RecordsHelp({ helpUrl }) {
return (
<section className="help">
<h2>
<h3 className="h5">
<FormattedMessage
id="help.section.header"
defaultMessage="Questions about Learner Records?"
description="A header for the help section"
/>
</h2>
</h3>
<p>
<FormattedMessage
id="help.section.content.with.link"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@

> div {
width: 100%;
@extend .d-flex;

input[type=checkbox] {
margin-top: 4px;
flex-shrink: 0;
}
}
}
}

0 comments on commit e1accfe

Please sign in to comment.