17 lines
272 B
SCSS
17 lines
272 B
SCSS
.LP-UserProfile {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
&__Bio {
|
|
flex-grow: 5;
|
|
flex-shrink: 10;
|
|
padding-right: $-spacing-large;
|
|
}
|
|
|
|
&__Info {
|
|
flex-grow: 10;
|
|
flex-shrink: 1;
|
|
flex-basis: max-content;
|
|
}
|
|
}
|