From 8bcda0c6589ff8437ce82ae56cf5b1c26422dc3f Mon Sep 17 00:00:00 2001 From: Dan Gowans Date: Tue, 8 Jun 2021 08:58:27 -0400 Subject: [PATCH] Round the top corners on .panel-block:first-child When there is no `.panel-heading` present, round the top corners of the first `.panel-block`. --- sass/components/panel.sass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sass/components/panel.sass b/sass/components/panel.sass index afaffcd9..f36aa8bb 100644 --- a/sass/components/panel.sass +++ b/sass/components/panel.sass @@ -102,6 +102,9 @@ $panel-colors: $colors !default color: $panel-block-active-color .panel-icon color: $panel-block-active-icon-color + &:first-child + border-top-left-radius: $panel-radius + border-top-right-radius: $panel-radius &:last-child border-bottom-left-radius: $panel-radius border-bottom-right-radius: $panel-radius