diff --git a/src/app/components/blurPanel/_blurPanel.scss b/src/app/components/blurPanel/_blurPanel.scss index fb302a5..3093616 100644 --- a/src/app/components/blurPanel/_blurPanel.scss +++ b/src/app/components/blurPanel/_blurPanel.scss @@ -4,14 +4,24 @@ position: relative; transition: all 0.2s ease; margin-bottom: 24px; - &:hover { background: $panel-bg-hover; } - &.animated { animation-duration: 0.5s; } + &.small-panel { + height: $small-panel-height; + } + &.medium-panel { + height: $medium-panel-height; + } + &.large-panel { + height: $large-panel-height; + } + &.with-scroll { + overflow-y: auto; + } } .panel-heading, .panel-default > .panel-heading { diff --git a/src/app/components/blurPanel/blurPanel.html b/src/app/components/blurPanel/blurPanel.html index d2ecbda..6e8c100 100644 --- a/src/app/components/blurPanel/blurPanel.html +++ b/src/app/components/blurPanel/blurPanel.html @@ -1,4 +1,4 @@ -