schlechtenburg/src/components/internal/Block.scss
2020-05-20 16:21:08 +02:00

26 lines
382 B
SCSS

.sb-block {
position: relative;
display: flex;
align-items: stretch;
justify-items: stretch;
min-height: 50px;
> .sb-toolbar {
opacity: 0;
pointer-events: none;
}
&:focus,
&:hover {
outline: 1px solid var(--grey-2);
}
&:focus {
> .sb-toolbar {
opacity: 1;
pointer-events: all;
outline: 1px solid var(--grey-2);
}
}
}