mirror of
https://github.com/johndoe6345789/snippet-pastebin.git
synced 2026-04-24 13:34:55 +00:00
- Updated theme.scss to use rgb() for background colors and added stylelint rules. - Modified _mixins.scss to reorder properties for better readability and consistency. - Enhanced button styles in _buttons.scss for improved layout and hover effects. - Improved card styles in _cards.scss for better hover effects and layout consistency. - Refined dialog styles in _dialogs.scss to enhance animations and layout. - Updated form styles in _forms.scss for better accessibility and consistency. - Enhanced header styles in _header.scss for improved layout and visual hierarchy. - Refined typography styles in _typography.scss for better readability and consistency. - Improved utility classes in _utilities.scss for better opacity handling and layout.
23 lines
725 B
JSON
23 lines
725 B
JSON
{
|
|
"extends": ["stylelint-config-standard-scss"],
|
|
"plugins": ["stylelint-order"],
|
|
"rules": {
|
|
"color-no-hex": true,
|
|
"color-named": "never",
|
|
"value-keyword-case": "lower",
|
|
"no-duplicate-at-import-rules": true,
|
|
"declaration-block-no-redundant-longhand-properties": true,
|
|
"property-no-vendor-prefix": true,
|
|
"selector-no-vendor-prefix": true,
|
|
"media-feature-name-no-vendor-prefix": true,
|
|
"selector-class-pattern": "^[a-z0-9\\-]+$",
|
|
"selector-max-id": 0,
|
|
"selector-max-universal": 0,
|
|
"max-nesting-depth": 4,
|
|
"order/properties-alphabetical-order": true,
|
|
"color-function-notation": "modern",
|
|
"alpha-value-notation": "percentage",
|
|
"color-hex-length": "short"
|
|
}
|
|
}
|