Closes #11682: Remove lateral padding from highlighted text

This commit is contained in:
jeremystretch 2023-03-17 16:04:55 -04:00
parent a864e8127b
commit 8d25d7812c
5 changed files with 7 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -56,4 +56,4 @@
"resolutions": { "resolutions": {
"@types/bootstrap/**/@popperjs/core": "^2.11.6" "@types/bootstrap/**/@popperjs/core": "^2.11.6"
} }
} }

View File

@ -42,3 +42,9 @@ input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration { input[type='search']::-webkit-search-results-decoration {
-webkit-appearance: none !important; -webkit-appearance: none !important;
} }
// Remove x-axis padding from highlighted text
mark {
padding-left: 0;
padding-right: 0;
}