Skip to content

Commit

Permalink
fix default empty image styles
Browse files Browse the repository at this point in the history
  • Loading branch information
apathania22 committed Oct 4, 2024
1 parent 2794c8c commit 3392741
Showing 1 changed file with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,16 @@ import { Component } from '@angular/core';
class="scEmptyImage"
/>
`,
styles:
'img { min-width:48px; min-height:48px; max-width:400px; max-height:400px; cursor:pointer }',
styles: [
`
:host {
min-width: 48px;
min-height: 48px;
max-width: 400px;
max-height: 400px;
cursor: pointer;
}
`,
],
})
export class DefaultEmptyImageFieldEditingComponent {}

0 comments on commit 3392741

Please sign in to comment.