Skip to content

Instantly share code, notes, and snippets.

@web-crab
Last active May 12, 2019 17:38
Show Gist options
  • Save web-crab/0f592339b63429424857ffca42e9edfb to your computer and use it in GitHub Desktop.
Save web-crab/0f592339b63429424857ffca42e9edfb to your computer and use it in GitHub Desktop.
// Styles for autofilled inputs, textareas, selects
input:-webkit-autofill {
-webkit-text-fill-color black
-webkit-box-shadow 0 0 0px 100px white inset
}
// Подсветка элемента при тапе на мобилах
div {
-webkit-tap-highlight-color: transparent;
}
// Переносы
.hyphenate {
overflow-wrap: break-word;
word-wrap: break-word;
-webkit-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
}
// Использовать шрифт системы
.system-font-stack {
font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, Roboto, sans-serif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment