Fix media query not working on Safari

Safari on iOS <16.4, which is still widely used (e.g. by the
iPhone 13), doesn't support them.

The max-width media query was rewritten to the range syntax by our
format-on-save setting, so I also disabled that.
This commit is contained in:
Vincent 2023-06-08 11:54:25 +02:00 коммит произвёл Vincent
Родитель cec38f7171
Коммит 1037c75c93
3 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -3,6 +3,7 @@
"stylelint-config-standard"
],
"rules": {
"media-feature-range-notation": null,
"alpha-value-notation": "number",
"import-notation": "string",
"no-descending-specificity": [

2
.vscode/settings.json поставляемый
Просмотреть файл

@ -2,7 +2,7 @@
"eslint.enable": true,
"eslint.format.enable": true,
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.formatOnSave": false,
"editor.formatOnSaveMode": "modificationsIfAvailable",
"eslint.validate": [
"javascript"

Просмотреть файл

@ -61,7 +61,7 @@
outline: 5px auto -webkit-focus-ring-color;
}
@media (width <= 600px) {
@media (max-width: 600px) {
.floating-banner {
padding: var(--padding-sm) 10vw var(--padding-sm) 2.5vw;
}