Add action-group element

This commit is contained in:
Andrew Croce 2018-07-23 14:25:21 -04:00
parent 0dd90f7cc7
commit 900544bffd
2 changed files with 15 additions and 0 deletions

View File

@ -12,6 +12,7 @@
@import 'elements/tables';
@import 'elements/icons';
@import 'elements/sidenav';
@import 'elements/action_group';
@import 'components/layout';
@import 'components/topbar';

View File

@ -0,0 +1,14 @@
.action-group {
display: flex;
flex-direction: row-reverse;
align-items: center;
margin-top: $gap * 4;
.action-group__action {
margin: 0 0 0 ($gap * 2);
}
&:last-child {
margin-bottom: $gap * 3;
}
}