mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 19:51:08 +01:00
* Added prettier with automatic useage on pre-commit to avoid style breakage * Ran Prettier on the project
26 lines
635 B
Text
26 lines
635 B
Text
/* Base Value */
|
|
@distance: 8;
|
|
|
|
/* Margins */
|
|
@tinyMargin: (@distance / 4) * 1px;
|
|
@halfMargin: (@distance / 2) * 1px;
|
|
@fullMargin: @distance * 1px;
|
|
@mediumMargin: @distance * 1.5px; // Specific, but might be good?
|
|
@largeMargin: @distance * 2px;
|
|
@threeQuarterMargin: @distance * 3px; // Too specific? If not used a lot, possibly remove and just use @distance * 3px
|
|
@hugeMargin: @distance * 4px;
|
|
@massiveMargin: @distance * 8px;
|
|
|
|
/* Borders */
|
|
@thinBorder: 1px;
|
|
@normalBorder: 2px;
|
|
@thickBorder: 4px;
|
|
@normalRadius: 6px;
|
|
|
|
/* Padding */
|
|
@smallPadding: 2px;
|
|
@fullPadding: 4px;
|
|
@largePadding: 8px;
|
|
|
|
/* Inputs */
|
|
@inputSingleMinWidth: 26px;
|