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

fix a couple images #2459

Merged
merged 1 commit into from
Oct 3, 2024
Merged
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
7 changes: 2 additions & 5 deletions src/pages/Metrics/Metrics.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import _omit from 'lodash/omit'
import AsAvatarUser from '../../interactions/User/AsAvatarUser'
import messages from './Messages'
import messagesAsReviewer from './MessagesAsReviewer'
import illustrationCompletedTasks from '../../static/images/illustration-completed-tasks.svg'

const ProfileImage = props => {

Expand Down Expand Up @@ -120,11 +121,7 @@ class Metrics extends Component {
<div className="mr-flex-grow mr-text-center"><BusySpinner /></div> :
<div className="mr-flex-grow mr-flex mr-flex-col mr-items-center">
<div className="mr-mb-6">
<SvgSymbol
sym="illustration-completed-tasks"
className="mr-w-32 mr-h-auto"
viewBox="0 0 183 120"
/>
<img src={illustrationCompletedTasks} style={{ height: 80, width: 120}} />
</div>
<span className="mr-ticker mr-mb-6 mr-text-5xl lg:mr-text-6xl">
{this.digitBoxes(totalTasks, 4)}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Teams/Teams.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export const Teams = props => {
</button>
</div>
<div className="mr-w-1/2 mr-h-100 mr-absolute mr-top-0 mr-right-0 mr--mt-20">
<img src={teamsImage} className="mr-w-full mr-h-full" />
<img src={teamsImage} className="mr-w-60 mr-h-60" />
</div>
</div>
</div>
Expand Down