I use a git project for a virtual keyboard (https://ngx-material-keyboard.github.io/demo/). And I have some issues to get it running on a small device with 450*250 pixel.
At the end I found the necessary changes in the css if I modify it directly at the web browser with dev tools.
Now I have to find the right position to change the sources.
There will be used the overlay component from angular2-material to visualize the keyboard.
If I comment out the position in the cdk-overlay-container, it works:
.cdk-overlay-container {
/* position: fixed; */
z-index: 1000;
}
But I cant overwrite these from my angular application. Any suggestions?