From 5d098b3c10745216ccf872b981342ec2ebd8b68a Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 17 Feb 2022 17:01:21 -0800 Subject: [PATCH] Removes duplicate selector --- bookwyrm/static/css/bookwyrm.css | 4 ---- dev-tools/.stylelintrc.js | 1 + 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/bookwyrm/static/css/bookwyrm.css b/bookwyrm/static/css/bookwyrm.css index bc1db5203..303bc031c 100644 --- a/bookwyrm/static/css/bookwyrm.css +++ b/bookwyrm/static/css/bookwyrm.css @@ -383,10 +383,6 @@ details.dropdown .dropdown-menu a:focus-visible { justify-content: center; } -.bw-tabs.is-right { - justify-content: flex-end; -} - .bw-tabs.is-boxed a { border: 1px solid transparent; border-radius: 4px 4px 0 0; diff --git a/dev-tools/.stylelintrc.js b/dev-tools/.stylelintrc.js index 68c68f894..de50a453d 100644 --- a/dev-tools/.stylelintrc.js +++ b/dev-tools/.stylelintrc.js @@ -16,5 +16,6 @@ module.exports = { "property-no-vendor-prefix": null, "color-function-notation": null, "declaration-block-no-redundant-longhand-properties": null, + "no-descending-specificity": null } };