Skip to content

Commit

Permalink
feat: User Profile Image (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
arbirali authored Dec 1, 2023
1 parent b48b980 commit 583c653
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions paragon/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,26 @@
vertical-align: middle;
}

.user-profile {
border: 1px solid $border-color;
border-radius: $default-radius/2;
overflow: hidden;
height: 40px;
width: 40px;

@media (min-width: map-get($grid-breakpoints, "lg")) {
height: 65px;
width: 65px;
border-radius: $default-radius;
}

img {
object-fit: contain;
width: 100%;
height: 100%;
}
}

.dropdown-toggle {
font-size: 1.5rem;

Expand Down

0 comments on commit 583c653

Please sign in to comment.