1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-20 15:18:08 +02:00

Enable the declaration-block-no-redundant-longhand-properties Stylelint rule

Note that these changes were done automatically, using `gulp lint --fix`.
This rule will help avoid unnecessary repetition in the CSS; please see https://stylelint.io/user-guide/rules/declaration-block-no-redundant-longhand-properties/
This commit is contained in:
Jonas Jenwald 2023-03-25 10:04:29 +01:00
parent c706c6c34f
commit a4dfa04a0b
4 changed files with 5 additions and 16 deletions

View file

@ -77,18 +77,12 @@ a {
#imagepane {
position: fixed;
left: 340px;
right: 0;
top: 10px;
bottom: 0;
inset: 10px 0 0 340px;
}
#images {
position: absolute;
left: 0;
right: 0;
top: 22px;
bottom: 0;
inset: 22px 0 0;
overflow: auto;
}