diff --git a/docusaurus.config.js b/docusaurus.config.js index be0c3ff31e..17855c51d8 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -170,7 +170,7 @@ const config = { href: 'https://learn.cypress.io', }, { - label: 'YouTube', + label: 'Cypress.io YouTube', href: 'https://www.youtube.com/channel/UC-EOsTo2l2x39e4JmSaWNRQ', }, ], diff --git a/package-lock.json b/package-lock.json index 2634ba5d86..e180696e3a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -20,7 +20,6 @@ "clsx": "^1.1.1", "docusaurus-plugin-image-zoom": "^0.1.1", "docusaurus-plugin-sass": "^0.2.2", - "get-all-files": "^4.1.0", "postcss": "^8.4.14", "prism-react-renderer": "^1.3.3", "react": "^17.0.2", @@ -6339,13 +6338,6 @@ "node": ">=6.9.0" } }, - "node_modules/get-all-files": { - "version": "4.1.0", - "license": "MIT", - "engines": { - "node": ">= 12.17" - } - }, "node_modules/get-intrinsic": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", @@ -17057,9 +17049,6 @@ "gensync": { "version": "1.0.0-beta.2" }, - "get-all-files": { - "version": "4.1.0" - }, "get-intrinsic": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", diff --git a/package.json b/package.json index 3adda3aeab..3dbb8f526e 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,6 @@ "clsx": "^1.1.1", "docusaurus-plugin-image-zoom": "^0.1.1", "docusaurus-plugin-sass": "^0.2.2", - "get-all-files": "^4.1.0", "postcss": "^8.4.14", "prism-react-renderer": "^1.3.3", "react": "^17.0.2", diff --git a/src/components/plugins-list/style.module.css b/src/components/plugins-list/style.module.css index 17ca410959..939995d89f 100644 --- a/src/components/plugins-list/style.module.css +++ b/src/components/plugins-list/style.module.css @@ -46,13 +46,6 @@ ul.pluginsList li { margin: 0 !important; } -/* stylelint-disable-next-line at-rule-no-unknown */ -@screen lg { - ul.pluginsList li { - width: 30%; - } -} - ul.pluginsList li p { margin-bottom: 0.5em; } diff --git a/src/components/video-local/style.module.css b/src/components/video-local/style.module.css index 149d2e996b..12d2ba662e 100644 --- a/src/components/video-local/style.module.css +++ b/src/components/video-local/style.module.css @@ -5,10 +5,3 @@ .docsVideo video { width: 100%; } - -/* stylelint-disable-next-line at-rule-no-unknown */ -@screen xl { - .docsVideo { - min-height: 380px; - } -} diff --git a/stylelint.config.js b/stylelint.config.js deleted file mode 100644 index 577c45be5e..0000000000 --- a/stylelint.config.js +++ /dev/null @@ -1,25 +0,0 @@ -module.exports = { - extends: [ - 'stylelint-config-standard', - 'stylelint-config-css-modules', - 'stylelint-config-prettier', - ], - // add your custom config here - // https://stylelint.io/user-guide/configuration - rules: { - 'no-descending-specificity': null, - 'at-rule-no-unknown': [ - true, - { - ignoreAtRules: [ - 'tailwind', - 'variants', - 'responsive', - 'apply', - 'screen', - 'value', - ], - }, - ], - }, -}