taiga-front/app/styles/components/card-placeholder.scss

37 lines
726 B
SCSS

.card-placeholder {
background: darken($whitish, 2%);
border: 1px dashed darken($whitish, 8%);
cursor: default;
padding: 1rem;
.placeholder-avatar {
display: flex;
}
.image {
background: darken($whitish, 8%);
flex-basis: 48px;
height: 48px;
margin-right: .5rem;
width: 48px;
}
.text {
flex: 1;
}
.line {
background: darken($whitish, 8%);
height: 1rem;
margin-bottom: 1rem;
width: 80%;
&:last-child {
width: 40%;
}
}
.title {
text-transform: uppercase;
}
p {
@include font-type(light);
color: $gray;
margin: 0;
}
}