Skip to content

Commit

Permalink
Merge pull request #617 from culturecreates/feature/issue-564
Browse files Browse the repository at this point in the history
fix: alignment issue in read-only user page
  • Loading branch information
AbhishekPAnil authored Sep 25, 2023
2 parents d070646 + 97acde4 commit 56a9188
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/Dashboard/UserReadOnly/UserReadOnly.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ const UserReadOnly = () => {
</Col>
<Col span={24}>
<Row>
<Col lg={16} sm={24} xs={24}>
<Card className="user-read-only-card">
<Col lg={24} sm={24} xs={24}>
<Card className="user-read-only-card" style={{ border: 'none' }}>
<Row gutter={[0, 4]}>
<Col>
<h2 className="user-info-details-card-heading">{t('dashboard.settings.userReadOnly.details')}</h2>
Expand Down Expand Up @@ -189,8 +189,8 @@ const UserReadOnly = () => {
</Col>
<Col span={24}>
<Row>
<Col lg={16} sm={24} xs={24}>
<Card className="user-read-only-calendar-card">
<Col lg={24} sm={24} xs={24}>
<Card className="user-read-only-calendar-card" style={{ border: 'none' }}>
<Row>
<Col>
<h2 className="user-info-details-card-heading">
Expand Down

0 comments on commit 56a9188

Please sign in to comment.