Skip to content

Commit

Permalink
improved styles
Browse files Browse the repository at this point in the history
  • Loading branch information
klakhov committed Oct 23, 2024
1 parent 0484e69 commit 9cfe0c8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function FrameTags(): JSX.Element {

return (
<>
<div>
<div className='cvat-canvas-annotation-frame-tags'>
{frameTags
.filter((tag: ObjectState) => !tag.isGroundTruth)
.map((tag: ObjectState) => (
Expand All @@ -59,7 +59,7 @@ function FrameTags(): JSX.Element {
</Tag>
))}
</div>
<div>
<div className='cvat-canvas-ground-truth-frame-tags'>
{frameTags
.filter((tag: ObjectState) => tag.isGroundTruth)
.map((tag: ObjectState) => (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,7 @@

transform: scale(1.1);
}

.cvat-canvas-annotation-frame-tags {
margin-bottom: $grid-unit-size;
}

0 comments on commit 9cfe0c8

Please sign in to comment.