Let CSS determine which application row is last

This commit is contained in:
Mike Greiling 2018-11-04 15:34:07 -06:00 committed by Thong Kuah
parent fc0b8252df
commit d13646d952

View file

@ -25,6 +25,12 @@
.cluster-application-row {
border-bottom: 1px solid $border-color;
padding: $gl-padding;
&:last-child {
border-bottom: 0;
border-bottom-left-radius: calc(#{$border-radius-default} - 1px);
border-bottom-right-radius: calc(#{$border-radius-default} - 1px);
}
}
}