manual lint --fix

This commit is contained in:
Henry Jameson 2025-03-31 12:48:53 +03:00
commit f6a2d1bdd6
7 changed files with 16 additions and 9 deletions

View file

@ -56,7 +56,7 @@
.post-textarea {
resize: vertical;
height: 10em;
overflow: none;
overflow: visible;
box-sizing: content-box;
}
}

View file

@ -209,7 +209,7 @@ export default {
.assists {
grid-area: assists;
display: grid;
grid-auto-flow: rows;
grid-auto-flow: row;
grid-auto-rows: 2em;
grid-gap: 0.5em;
}

View file

@ -106,7 +106,6 @@
flex-direction: column;
justify-content: flex-end;
grid-template-columns: 1fr;
grid-auto-columns: none;
grid-auto-rows: auto;
grid-auto-flow: row dense;

View file

@ -77,7 +77,7 @@
.hidden {
display: none;
visibility: "hidden";
visibility: hidden;
}
}
</style>

View file

@ -157,7 +157,13 @@
linear-gradient(to top, white, white);
/* Autoprefixed seem to ignore this one, and also syntax is different */
/* stylelint-disable mask-composite */
/* stylelint-disable declaration-property-value-no-unknown */
/* TODO check if this is still needed */
mask-composite: xor;
/* stylelint-enable declaration-property-value-no-unknown */
/* stylelint-enable mask-composite */
mask-composite: exclude;
}
}

View file

@ -68,10 +68,12 @@
margin: 0.5em 0 0;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-word;
word-break: break-all;
line-height: 1.2em;
// cap description at 3 lines, the 1px is to clean up some stray pixels
// TODO: fancier fade-out at the bottom to show off that it's too long?
/* cap description at 3 lines, the 1px is to clean up some stray pixels
TODO: fancier fade-out at the bottom to show off that it's too long?
*/
max-height: calc(1.2em * 3 - 1px);
}

View file

@ -223,7 +223,7 @@
.userlist-placeholder {
display: flex;
justify-content: center;
align-items: middle;
align-items: center;
padding: 2em;
}
}
@ -232,7 +232,7 @@
.panel-body {
display: flex;
justify-content: center;
align-items: middle;
align-items: center;
padding: 7em;
}
}