mirror of
https://github.com/lukevella/rallly.git
synced 2025-06-02 02:31:53 +02:00
First Commit
This commit is contained in:
commit
2630cc237a
527 changed files with 104273 additions and 0 deletions
14
public/scss/bourbon/css3/_image-rendering.scss
vendored
Normal file
14
public/scss/bourbon/css3/_image-rendering.scss
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
@mixin image-rendering ($mode:auto) {
|
||||
|
||||
@if ($mode == crisp-edges) {
|
||||
-ms-interpolation-mode: nearest-neighbor; // IE8+
|
||||
image-rendering: -moz-crisp-edges;
|
||||
image-rendering: -o-crisp-edges;
|
||||
image-rendering: -webkit-optimize-contrast;
|
||||
image-rendering: crisp-edges;
|
||||
}
|
||||
|
||||
@else {
|
||||
image-rendering: $mode;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue