join/src/app/components/board/task/task-empty/task-empty.component.scss
2024-04-28 11:18:00 +02:00

23 lines
469 B
SCSS

.empty {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
max-width: 268px;
height: 48px;
border-radius: 10px;
border: 1px dashed var(--gray);
background-color: var(--very-light-gray2);
box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.16);
font-size: 16px;
font-weight: 400;
color: var(--gray);
margin: 15.5px 0;
}
@media screen and (max-width: 667px) {
.empty {
width: 100%;
max-width: 100%;
}
}