Skip to content

Commit

Permalink
Changing course title order
Browse files Browse the repository at this point in the history
  • Loading branch information
annagav committed Jan 2, 2025
1 parent 7f1937d commit de53549
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/public/scss/catalog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,7 @@
}

.catalog-item-description {
height: 85px;
display: flex;
padding: 15px;
flex-direction: column;
Expand All @@ -435,7 +436,6 @@
}

.item-title {
height: 36px;
align-self: stretch;
color: rgba(3, 21, 45, 0.85);
/* Add elipses after 2 lines of title text */
Expand Down
2 changes: 1 addition & 1 deletion frontend/public/src/containers/pages/CatalogPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -669,10 +669,10 @@ export class CatalogPage extends React.Component<Props> {
alt=""
/>
<div className="catalog-item-description">
<div className="item-title">{course.title}</div>
<div className="start-date-description">
{getStartDateText(course)}
</div>
<div className="item-title">{course.title}</div>
</div>
</div>
</a>
Expand Down

0 comments on commit de53549

Please sign in to comment.