diff --git a/src/app/home/home.component.scss b/src/app/home/home.component.scss index dc8fa99..ec253cb 100644 --- a/src/app/home/home.component.scss +++ b/src/app/home/home.component.scss @@ -3,14 +3,33 @@ justify-content: center; flex-direction: column; align-items: center; + padding: 1rem; - &__img { - display: block; - height: 300px; - width: 300px; + &__img-container { + position: relative; + width: 208px; + height: 208px; + } + + &__circle { + position: absolute; border-radius: 50%; - background-image: url("../../assests/images/rc-logo.jpeg"); - background-size: cover; + + &--large { + height: 208px; + width: 208px; + background-color: var(--mat-sys-primary); + } + + &--small { + height: 200px; + width: 200px; + background-image: url("../../assests/images/rc-logo.jpeg"); + background-size: cover; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + } } &__header {