Skip to content

Commit

Permalink
Testing notes highlighting style
Browse files Browse the repository at this point in the history
  • Loading branch information
Schottkyc137 committed Sep 1, 2022
1 parent f795b0a commit fe59e66
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
*matRowDef="let row; columns: ['date', 'title'];"
class="dashboard-table-row row-view"
(click)="openNote(row)"
[style.background-color]="row.getColor?.()"
></tr>
</table>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,18 @@
.row-view {
cursor: pointer;

&::before {
content: '';
display: block;
width: 8px;
height: 8px;
border-radius: 100vmax;
background-color: red;
position: relative;
top: 19px;
left: 4px;
}

& > td:first-child {
padding-left: $standard-margin-small;
}
Expand Down

0 comments on commit fe59e66

Please sign in to comment.