Polygon checkbox working active and inactive; need to hook up action to filter through events

This commit is contained in:
efarooqui
2021-05-21 14:48:40 -07:00
parent 7156639ec3
commit 8206edb310
5 changed files with 36 additions and 16 deletions

View File

@@ -413,14 +413,26 @@
text-align: left;
float: left;
.checkbox {
display: inline-block;
width: 12px;
height: 12px;
border: 1px solid $offwhite;
box-sizing: border-box;
.border {
width: 16px;
height: 16px;
background: none;
float: left;
box-sizing: border-box;
position: relative;
.checkbox {
display: inline-block;
width: 12px;
height: 12px;
border: 1px solid $offwhite;
box-sizing: border-box;
background: none;
float: left;
position: absolute;
top: 2px;
left: 2px;
background: none;
}
}
}