mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-12 17:47:08 +01:00
Fix heights on transitions, text/plain display in dark mode
This commit is contained in:
parent
d9110f4ef7
commit
d5ab1119d3
3 changed files with 14 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ export class SelectComponent extends AbstractInputComponent<number> {
|
|||
}
|
||||
|
||||
get isPrivate(): boolean {
|
||||
return this.items.find((i) => i.id === this.value)?.private
|
||||
return this.items?.find((i) => i.id === this.value)?.private
|
||||
}
|
||||
|
||||
getSuggestions() {
|
||||
|
|
|
|||
|
|
@ -0,0 +1,9 @@
|
|||
.h2 {
|
||||
min-height: calc(1.325rem + 0.9vw);
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
.h2 {
|
||||
min-height: 2.8rem;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue