mirror of
https://github.com/JKorf/CryptoExchange.Net.git
synced 2026-08-17 03:12:56 +00:00
d533557324
Websocket refactoring
7 lines
202 B
SCSS
7 lines
202 B
SCSS
// Resize anything
|
|
|
|
@mixin resizable($direction) {
|
|
overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
|
|
resize: $direction; // Options: horizontal, vertical, both
|
|
}
|