taiga-front/app/styles/components/created-by.scss

41 lines
910 B
SCSS

.us-created-by {
@include table-flex();
margin-top: 2rem;
position: relative;
.user-avatar {
@include table-flex-child(1, 0);
img {
border-radius: 8%;
width: 100%;
}
}
.created-by {
@include table-flex-child(3, 0);
margin-left: 1rem;
margin-top: 5px;
.assigned-title {
@extend %small;
color: $gray-light;
display: block;
}
.user-assigned {
@extend %large;
color: $green-taiga;
cursor: default;
&.editable {
cursor: pointer;
}
}
.icon-delete {
color: $gray-light;
opacity: 1;
position: absolute;
right: 1rem;
top: 1rem;
&:hover {
color: $red;
}
}
}
}