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