Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: UI improvements #318

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
2 changes: 1 addition & 1 deletion src/components/ProgramRecord/RecordsHelp.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Hyperlink } from '@openedx/paragon';
function RecordsHelp({ helpUrl }) {
return (
<section className="help">
<h2>
<h2 className="h5">
<FormattedMessage
id="help.section.header"
defaultMessage="Questions about Learner Records?"
Expand Down
4 changes: 2 additions & 2 deletions src/components/ProgramRecordsList/ProgramRecordsList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,13 +148,13 @@ function ProgramRecordsList() {

const renderHelp = () => (
<div className="pl-3 pr-3 pt-4 pb-1">
<h3 className="h5">
<h2 className="h5">
<FormattedMessage
id="records.help.header"
defaultMessage="Questions about Learner Records?"
description="Header for the help section of Learner Records page"
/>
</h3>
</h2>
<FormattedMessage
id="records.help.description"
defaultMessage="To learn more about records you can "
Expand Down