frontend/src/app/components/nodes/norm/norm.component.scss
garrettmills 331d40e49c
All checks were successful
continuous-integration/drone/push Build is passing
Add logic to the editor service for saving
2020-10-13 22:28:38 -05:00

37 lines
557 B
SCSS

.editable-base {
padding: 20px;
&.focused {
background: aliceblue;
}
}
.toolbar-base {
height: 40px;
border: 1px solid lightgray;
border-radius: 5px;
display: flex;
flex-direction: row;
.toolbar-button {
height: calc(100% - 6px);
min-width: 30px;
display: flex;
justify-content: center;
align-items: center;
margin: 3px;
&:hover {
background: lightgrey;
cursor: pointer;
}
}
.toolbar-sep {
height: 100%;
width: 1px;
border: 1px solid lightgrey;
margin: 0 5px;
}
}