Anyone know how I can align the Groups on the left to be left aligned?
I'm also struggling with getting the keypad to fill the entire tile that it's sitting in. The top and bottom padding doesn't seem to go away regardless of what I set in the CSS.
Here's the CSS I have so far, all of the tiles are currently TEXT but will eventually be replaced with links to individual dashboards.
#tile-30 .tile-title {
display:none;
object-fit: cover;
background-color:transparent;
border: none;
}
#tile-30 .tile-contents {
padding: 0px;
height:100%;
width:100%;
background-color:transparent;
border: none;
}
#tile-30 .tile-primary {
padding: 0;
height:100%;
width:100%;
object-fit: cover;
background-color:transparent;
border: none;
}
#tile-11 .tile-title::after {
visibility: visible;
position: absolute;
text-align: center;
left: inherit;
right: 0;
bottom: 0;
white-space: pre-wrap;
}
#tile-11 .tile-title {
visibility: hidden;
white-space: nowrap !important;
overflow: unset;
}