triangle marker for open environments

This commit is contained in:
dandds
2019-04-30 17:13:10 -04:00
parent 1484473bd7
commit 41a191b1fc
3 changed files with 19 additions and 1 deletions

View File

@@ -1,3 +1,19 @@
.triangle-box {
position: relative;
.triangle-up {
$triangle-size: ($gap * 1.5);
position: absolute;
width: 0;
height: 0;
border-left: $triangle-size solid transparent;
border-right: $triangle-size solid transparent;
border-bottom: $triangle-size solid $color-blue-light;
bottom: -4px;
right: 50%;
}
}
.accordion {
@include block-list;