Files
Todo-tool/src/app/active-list-tasks/active-list-tasks.component.scss

32 lines
617 B
SCSS

.container {
max-width: 50rem;
width: 90%;
margin: 0 auto;
.task {
position: relative;
width: 100%;
height: 2.5rem;
display: flex;
align-items: center;
margin: .5rem 0;
input {
width: 100%;
height: 100%;
padding: 0 3rem;
border-radius: .1rem;
border-style: none;
background-color: #444;
}
&.new {
margin-top: 1rem;
mat-icon {
position: absolute;
left: 1rem;
}
}
}
}