- Remove excessive blank lines (triple+ newlines reduced to double) - Fix EditorConfig indent_size from 4 to 2 spaces to match Prettier - Ensure consistent whitespace formatting across JavaScript/TypeScript files - Clean up formatting in templates (HBS files) Files affected: - src/apps/actor/base-sheet.js: Remove 6 instances of triple+ blank lines - src/apps/item-sheet.js: Remove 4 instances of triple+ blank lines - src/apps/ruler/token-ruler.js: Remove 1 instance of triple+ blank lines - src/hooks/hooks.ts: Remove 1 instance of triple+ blank lines - templates/sheets/actor/*.hbs: Remove excessive blank lines - .editorconfig: Fix indent_size to match Prettier tabWidth (2 spaces)
18 lines
343 B
SCSS
18 lines
343 B
SCSS
/*
|
|
* SPDX-FileCopyrightText: 2021 Johannes Loher
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
@use "./colors";
|
|
|
|
$padding-sm: 5px;
|
|
$padding-md: 10px;
|
|
$padding-lg: 20px;
|
|
$margin-sm: $padding-sm;
|
|
$margin-md: $padding-md;
|
|
$margin-lg: $padding-lg;
|
|
|
|
$official-icons-path: "../assets/icons/official";
|
|
|
|
$border-groove: 2px groove colors.$c-border-groove;
|