I am scaling down a dashboard for display on the 6" Pi touchscreen. I started by increasing the 1x1 widget size to 64x64 pixels. I then added a template to increase the font size and icon size.
<style>
body.nr-dashboard-theme {
font-size: 40px !important;
}
md-sidenav > md-list > md-list-item{
width: 400px !important;
}
ui-icon {
font-size: 24px;
}
.md-toolbar-tools h1 {
font-size: 40px !important;
}
</style>
I still have a few problems:
- The text size for button labels did not increase in size.
- The side navigation bar is not wide enough. I increased the width, but I just end up with a horizontal scroll bar.
- I have a ui-table and don't know how to increase the size of the text in the columns and headings of the table.
- I have text input and while the label gets bigger, when you try to enter text it is clipped off.