Commit 0ce28158 authored by Guillaume Grossetie's avatar Guillaume Grossetie

Nesting should be no greater than 6

parent b5493a17
......@@ -213,26 +213,25 @@
}
> tbody {
> tr {
> td {
border-width: 0;
> tr > td {
border-width: 0;
&:first-child {
border-left-width: 1px;
}
&:last-child {
border-right-width: 1px;
}
&:first-child {
border-left-width: 1px;
}
&:last-child > td {
border-bottom-width: 1px;
&:last-child {
border-right-width: 1px;
}
}
> tr:last-child > td {
border-bottom-width: 1px;
}
}
}
&.grid-rows {
> thead > tr > th,
> tbody > tr > td {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment