luci-material-theme: align td text width 33%
The CSS applies a different padding for td elements with 33% width. This misaligns the text from this td to the others td. This change modifies the CSS to apply the same padding to all of the sibling td. Signed-off-by: Miguel Angel Mulero Martinez <migmul@gmail.com>
This commit is contained in:
parent
5ccef2421b
commit
3333fd6695
1 changed files with 2 additions and 1 deletions
|
@ -76,7 +76,8 @@
|
||||||
background: inherit;
|
background: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
.td[width="33%"] {
|
.td[width="33%"],
|
||||||
|
.td[width="33%"]~.td {
|
||||||
padding: 1.1em;
|
padding: 1.1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue