feat: add app widget (#206)
* refactor: move server api to api package * feat: add app widget * refactor: add element size for widget components on board * feat: add resize listener for widget width * feat: add widget app input * refactor: add better responsibe layout, add missing translations * fix: ci issues * fix: deepsource issues * chore: address pull request feedback
This commit is contained in:
13
packages/widgets/src/app/app.module.css
Normal file
13
packages/widgets/src/app/app.module.css
Normal file
@@ -0,0 +1,13 @@
|
||||
.appIcon {
|
||||
max-height: 100%;
|
||||
max-width: 100%;
|
||||
overflow: auto;
|
||||
flex: 1;
|
||||
object-fit: contain;
|
||||
scale: 0.8;
|
||||
transition: scale 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
.appIcon:hover {
|
||||
scale: 0.9;
|
||||
}
|
||||
Reference in New Issue
Block a user