An open API service indexing awesome lists of open source software.

https://github.com/onface/less-triangle

less triangle mixin
https://github.com/onface/less-triangle

Last synced: 10 days ago
JSON representation

less triangle mixin

Awesome Lists containing this project

README

        

# less-triangle
less triangle mixin

```less
@import "../../m/triangle/index.less";
.m-triangle-example {
&:before {
.TRIANGLE_TOP(5px, #ABCDEF);
}
&:after {
.TRIANGLE_BOTTOM(5px, blue);
}
}
.m-triangle-demo {
&:after {
.TRIANGLE_LEFT(5px, orange);
}
&:before {
.TRIANGLE_RIGHT(5px, pink);
}
}
```