Skip to content

Commit

Permalink
refactor: replace fx-layout with tailwind equivalent - user-badge
Browse files Browse the repository at this point in the history
  • Loading branch information
satikaj committed Nov 23, 2023
1 parent 30d105c commit 587404a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/common/user-badge/user-badge.component.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div fxLayout="row" fxLayoutAlign="start start">
<div class="flex flex-row justify-start items-start">
<a (click)="!unselected ? goToStudent() : null" style="display: flex">
<user-icon
size="40"
Expand All @@ -7,7 +7,7 @@
style="margin-right: 8px"
></user-icon>
</a>
<div fxLayout="column" fxLayoutAlign="center start" style="line-height: 0.5em; margin-top: 4px">
<div class="flex-col justify-center items-start" style="line-height: 0.5em; margin-top: 4px">
<div style="margin-top: 6px" id="placeholder1" [hidden]="!unselected"></div>
<div id="placeholder2" [hidden]="!unselected"></div>
<a (click)="!unselected ? goToStudent() : null" style="display: flex">
Expand Down

0 comments on commit 587404a

Please sign in to comment.