Skip to content
Closed
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
4 changes: 2 additions & 2 deletions ui/src/pages/Badges/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ const Index = () => {

return (
<div className="pt-4 mb-5">
<h3 className="mb-4">{t('title')}</h3>
<h1 className="fs-3 mb-4">{t('title')}</h1>
{badgesList?.map((item) => {
return (
<div key={item.group_name} className="mb-4">
<h5 className="mb-4">{item.group_name}</h5>
<h2 className="fs-5 mb-4">{item.group_name}</h2>
<Row>
{item.badges?.map((badge) => {
return (
Expand Down
2 changes: 1 addition & 1 deletion ui/src/pages/Tags/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const Tags = () => {
return (
<Row className="py-4 mb-4">
<Col xxl={12}>
<h3 className="mb-4">{t('title')}</h3>
<h1 className="fs-3 mb-4">{t('title')}</h1>
<div className="d-block d-sm-flex justify-content-between align-items-center flex-wrap">
<Stack direction="horizontal" gap={3} className="mb-3 mb-sm-0">
<Form>
Expand Down
4 changes: 2 additions & 2 deletions ui/src/pages/Users/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const Users = () => {
return (
<Row className="py-4 mb-4 d-flex justify-content-center">
<Col xxl={12}>
<h3 className="mb-4">{t('title')}</h3>
<h1 className="fs-3 mb-4">{t('title')}</h1>
</Col>

<Col xxl={12}>
Expand All @@ -55,7 +55,7 @@ const Users = () => {
<Fragment key={key}>
<Row className="mb-4">
<Col>
<h6 className="mb-0">{t(key)}</h6>
<h2 className="fs-6 mb-0">{t(key)}</h2>
</Col>
</Row>
<Row className={index === keys.length - 1 ? '' : 'mb-4'}>
Expand Down