Skip to content

Commit

Permalink
adjust more styles
Browse files Browse the repository at this point in the history
  • Loading branch information
CollinBeczak committed Aug 9, 2024
1 parent 0082c21 commit 23186ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ export class ActiveTaskControls extends Component {
<div>
{!isEditingTask && isComplete &&
<div className="mr-text-sm mr-text-white mr-whitespace-nowrap">

Check warning on line 384 in src/components/TaskPane/ActiveTaskDetails/ActiveTaskControls/ActiveTaskControls.js

View check run for this annotation

Codecov / codecov/patch

src/components/TaskPane/ActiveTaskDetails/ActiveTaskControls/ActiveTaskControls.js#L384

Added line #L384 was not covered by tests
<div className="mr-flex mr-text-sm mr-text-white mr-whitespace-nowrap">
<div className="mr-flex mr-mb-2 mr-text-sm mr-text-white mr-whitespace-nowrap">
<span>
<FormattedMessage
{...messages.markedAs}
Expand Down
4 changes: 2 additions & 2 deletions src/components/TaskTags/TaskTags.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,14 @@ export class TaskTags extends Component {
}
else if (this.props.tags && this.props.tags !== "") {
return (
<div className="mr-flex mr-items-center mr-mt-2 mr-pb-4 mr-max-w-full mr-overflow-x-auto">
<div className="mr-flex mr-items-center mr-pb-4 mr-max-w-full mr-overflow-x-auto">
<div className="mr-text-sm mr-text-white mr-flex mr-items-center mr-whitespace-nowrap">
<FormattedMessage {...messages.taskTags} /> {this.tagList()}
</div>

{!disableEditTags ?
<div className="mr-links-green-lighter mr-flex-grow-0 mr-flex">
<a onClick={() => this.setState({ edit: true })} className="mr-inline-block mr-mr-2">
<a onClick={() => this.setState({ edit: true })} className="mr-inline-block mr-whitespace-nowrap mr-mr-2">

Check warning on line 127 in src/components/TaskTags/TaskTags.js

View check run for this annotation

Codecov / codecov/patch

src/components/TaskTags/TaskTags.js#L127

Added line #L127 was not covered by tests
<FormattedMessage {...messages.updateTags} />
</a>
<a target="_blank" rel="noreferrer" href="https://learn.maproulette.org/en-us/documentation/using-maproulette-tags/" title="Learn more about Maproulette tags" className="">
Expand Down

0 comments on commit 23186ea

Please sign in to comment.