Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 1 |
espaco |
1 |
// Resize anything |
|
|
2 |
|
|
|
3 |
@mixin resizable($direction) { |
|
|
4 |
resize: $direction; // Options: horizontal, vertical, both |
|
|
5 |
overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` |
|
|
6 |
} |