You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
plain-ui/src/scss/components/_panel.scss

28 lines
467 B

/**
*
*
*
*/
@mixin plain-ui__component__panel()
{
.panel {
border: 1px solid var(--primary);
border-radius: $plain-ui__border-radius;
background: var(--white);
&__buttons {
display: flex;
justify-content: end;
width: 100%;
button:last-child .icon {
margin-right: 0;
}
}
&__body {
padding: 0.25em 1em;
}
}
}