jsketcher/modules/ui/components/controls/Button.less
2018-11-26 21:08:11 -08:00

30 lines
428 B
Text

@import '../../styles/theme.less';
@import '../../styles/mixins.less';
.button {
line-height: 1.5;
}
.neutral, .accent, .danger {
background-color: darken(@color-neutral, 10%);
}
.neutral {
.button-behavior(@color-neutral)
}
.accent {
.button-behavior(@color-accent)
}
.highlihgt {
.button-behavior(@color-highlight)
}
.danger {
.button-behavior(@color-danger)
}
.minor {
.button-behavior(@color-neutral)
}