first commit

This commit is contained in:
2024-07-15 11:28:08 +02:00
commit f52d538ea5
21891 changed files with 6161164 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
.jet-inline-svg {
display: inline-block;
svg {
min-width: 20px;
> circle,
> ellipse,
> polygon,
> path,
> rect {
&:not([stroke]){
stroke: none;
}
&:not([stroke-width]){
stroke-width: 2px;
}
&:not([stroke-linecap]){
stroke-linecap: butt;
}
&:not([stroke-dasharray]){
stroke-dasharray: none;
}
&:not([stroke-miterlimit]){
stroke-miterlimit: 4;
}
}
}
&--custom-width {
width: 100%;
svg {
width: 100%;
height: auto;
display: block;
}
}
&--custom-color {
svg {
fill: currentColor;
stroke: currentColor;
}
}
}