25 lines
520 B
CSS
25 lines
520 B
CSS
|
.Profile__container {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
margin: 30px 0 0 0;
|
||
|
}
|
||
|
.Profile__row {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
flex-direction: column;
|
||
|
word-wrap: break-word;
|
||
|
box-shadow: 0px 0px 6px 6px rgba(0, 0, 0, .25);
|
||
|
border: 1px solid black;
|
||
|
border-radius: 1rem;
|
||
|
margin-bottom: 50px;
|
||
|
}
|
||
|
.Profile__logo {
|
||
|
border-radius: 50%;
|
||
|
object-fit: cover;
|
||
|
width: 150px;
|
||
|
height: 150px;
|
||
|
}
|
||
|
.Profile__comment {
|
||
|
margin: 0 0 50px 0;
|
||
|
}
|