taiga-front/app/modules/profile/profile.scss

44 lines
947 B
SCSS

.profile {
display: flex;
min-height: $main-height;
padding: 2rem 0;
.profile-bar {
margin-right: 1rem;
width: 200px;
}
.main {
display: flex;
padding: 0;
}
.timeline-wrapper {
background: lighten($whitish, 10%);
margin-right: 3.5rem;
width: 768px;
> div {
opacity: 1;
padding-top: 0;
position: relative;
transition: all .3s cubic-bezier(.09, .43, .35, .95);
&.ng-hide {
opacity: 0;
padding-top: .5vh;
}
}
.spin {
margin: 10% auto;
width: 3rem;
img {
@extend %loading-spinner;
max-height: 3rem;
max-width: 3rem;
}
}
}
.profile-sidebar {
flex-basis: 150px;
flex-shrink: 0;
width: 150px;
}
}