Use automatic hyphenation when possible (#1362)

This commit is contained in:
Uriel
2025-04-23 06:16:21 -03:00
committed by GitHub
parent 6817eca793
commit 3639bdc0ff
2 changed files with 10 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
export default {
'**/*.{ts,tsx}': () => 'tsc -p tsconfig.json --noEmit',
'src/**/*.{js,jsx,ts,tsx}': 'eslint --max-warnings=0 --no-warn-ignored --cache --fix',
'**/*.{js,jsx,ts,tsx,css,md,json}': 'prettier --write',
'**/*.{js,jsx,ts,tsx,css,scss,md,json}': 'prettier --write',
};

View File

@@ -411,3 +411,12 @@ input::-ms-clear {
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
}
a,
p,
h1,
h2,
button,
div {
hyphens: auto;
}