AddRemove: make a button that adds constraints
This commit is contained in:
parent
4e3c86fb71
commit
f5486fb0dd
3 changed files with 87 additions and 3 deletions
|
|
@ -4,9 +4,11 @@ body {
|
|||
background-color: #222;
|
||||
}
|
||||
|
||||
/* outline */
|
||||
/* sidebar */
|
||||
|
||||
#outline {
|
||||
#sidebar {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
float: left;
|
||||
width: 450px;
|
||||
height: 100vh;
|
||||
|
|
@ -15,6 +17,28 @@ body {
|
|||
border-width: 0px 1px 0px 0px;
|
||||
border-style: solid;
|
||||
border-color: #555;
|
||||
}
|
||||
|
||||
/* add-remove */
|
||||
|
||||
#add-remove {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
margin: 8px;
|
||||
}
|
||||
|
||||
#add-remove > button {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
font-size: large;
|
||||
}
|
||||
|
||||
/* outline */
|
||||
|
||||
#outline {
|
||||
flex-grow: 1;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue