platypush/platypush/backend/http/webapp/src/components/widgets/Component/components/mixins.scss

16 lines
223 B
SCSS

@mixin component-row {
width: 100%;
display: flex;
cursor: pointer;
padding: .75em .5em;
border-bottom: $default-border;
&:hover {
background: $hover-bg;
}
}
.component-row {
@include component-row;
}