css updates
This commit is contained in:
@@ -36,19 +36,42 @@ body{
|
|||||||
}
|
}
|
||||||
|
|
||||||
.app > .main{
|
.app > .main{
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
justify-content: flex-start;
|
||||||
|
|
||||||
|
flex: 1;
|
||||||
}
|
}
|
||||||
.app > .main > .notes{
|
.app > .main > .notes{
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
|
||||||
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.note{
|
.note{
|
||||||
width: 17rem;
|
width: 17rem;
|
||||||
|
height: 17rem;
|
||||||
border: 1px solid black;
|
border: 1px solid black;
|
||||||
border-radius: 1rem;
|
border-radius: 1rem;
|
||||||
background-color: #aaccaa;
|
background-color: #aaccaa;
|
||||||
padding: 0.6rem;
|
padding: 0.6rem;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.note > textarea{
|
||||||
|
flex: 1;
|
||||||
|
|
||||||
|
resize: none;
|
||||||
|
width: 100%;
|
||||||
|
background-color: #aaccaa;
|
||||||
|
border: none;
|
||||||
|
outline: none;
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user