
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
css3 cross browser mixins for SASS
import in your SASS file as follows...
@import 'saz'
.example-boxShadow{
@include boxShadow(1px 1px 1px 1px #999);
}
creates
.example-boxShadow {
-webkit-box-shadow: 1px 1px 1px 1px #999;
-moz-box-shadow: 1px 1px 1px 1px #999;
box-shadow: 1px 1px 1px 1px #999;
}
.example-boxSizing{
@include boxSizing(border-box);
}
creates
.example-boxSizing {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.example-borderRadius{
@include borderRadius(1px 0 0 1px);
}
creates
.example-borderRadius {
-webkit-border-radius: 1px 0 0 1px;
border-radius: 1px 0 0 1px;
}
.example-transition{
@include transition(all 400ms ease-in);
}
creates
.example-transition {
-webkit-transition: all 400ms ease-in;
-moz-transition: all 400ms ease-in;
-ms-transition: all 400ms ease-in;
-o-transition: all 400ms ease-in;
transition: all 400ms ease-in;
}
.example-multipleColomns{
@include multipleColomns(4, 15px);
}
creates
.example-multipleColomns {
-moz-column-count: 4;
-moz-column-gap: 15px;
-webkit-column-count: 4;
-webkit-column-gap: 15px;
column-count: 4;
column-gap: 15px;
}
.example-transform{
@include transform(scale(2) translateX(270px));
}
creates
.example-transform {
-moz-transform: scale(2) translateX(270px);
-webkit-transform: scale(2) translateX(270px);
-o-transform: scale(2) translateX(270px);
-ms-transform: scale(2) translateX(270px);
transform: scale(2) translateX(270px);
}
.example-calc{
@include calc(width, '100% - 30px');
}
creates
.example-calc {
width: -webkit-calc(100% - 30px);
width: -moz-calc(100% - 30px);
width: calc(100% - 30px);
}
.example-outline{
@include outline('2px dotted #2', 5px);
}
creates
.example-outline {
outline: "2px dotted #2";
outline-offset: 5px;
}
fontFace($name, $path, $weight: null, $style: null, $exts: eot woff2 woff ttf svg)
@include fontFace("Awesome Font", "../fonts/awesome-font.ttf",400 ,normal , eot woff2 woff ttf svg);
creates
@font-face {
font-family: "Awesome Font";
font-style: normal;
font-weight: 400;
src: url("../fonts/awesome-font.ttf.eot?") format("eot"),
url("../fonts/awesome-font.ttf.woff2") format("woff2"),
url("../fonts/awesome-font.ttf.woff") format("woff"),
url("../fonts/awesome-font.ttf.ttf") format("truetype"),
url("../fonts/awesome-font.ttf.svg#Awesome_Font") format("svg");
}
FAQs
Sass mixins for css3 cross browser
We found that saz demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.