design filtres /projets checkbox

This commit is contained in:
2022-04-07 10:31:59 +02:00
parent f1bc4ffca9
commit 9c76dfb888
2 changed files with 36 additions and 0 deletions
@@ -171,6 +171,27 @@
padding: 0.1rem 0.7rem;
margin-left: 1rem;
}
input[type="checkbox"]{
display: none;
}
input[type="checkbox"] + label::before{
content:"";
display:inline-block;
width: 15px;
height: 15px;
background:#fff;
border-radius:0px;
border-color: rgba($color: #000000, $alpha: 1);
border-style: solid;
border-width: 1px;
margin-right: 0.5rem;
}
input[type="checkbox"]:checked + label::before{
background:$blue-light;
}
}