summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2018-11-04 15:34:07 -0600
committerThong Kuah <tkuah@gitlab.com>2018-11-08 23:26:04 +1300
commitd13646d95287078e9b1239aa426c47ed88fe610c (patch)
tree38e0bef20c59f9f0f85234bcd205e2a7a9370065
parentfc0b8252dffb686e07ef0b6f0dc72c2796c81a42 (diff)
downloadgitlab-ce-d13646d95287078e9b1239aa426c47ed88fe610c.tar.gz
Let CSS determine which application row is last
-rw-r--r--app/assets/stylesheets/pages/clusters.scss6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/clusters.scss b/app/assets/stylesheets/pages/clusters.scss
index 71a3fd544f2..76bbacc6548 100644
--- a/app/assets/stylesheets/pages/clusters.scss
+++ b/app/assets/stylesheets/pages/clusters.scss
@@ -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);
+ }
}
}