.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; } } .container.dark { .editable-base.focused { background: #404040 !important; } .toolbar-base .toolbar-button:hover { background: #404040; } }