mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +01:00
30 lines
428 B
Text
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)
|
|
}
|