diff --git a/CHANGELOG.md b/CHANGELOG.md index 85eb0836..07be1757 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.10.0 + +- [add] Add `cursor-col-resize` and `cursor-row-resize` + ## 1.9.2 - [add] Add `ml-auto` and `mr-auto` diff --git a/package-lock.json b/package-lock.json index 23f2adfe..2200ccb1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@mapbox/assembly", - "version": "1.9.2", + "version": "1.10.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@mapbox/assembly", - "version": "1.9.2", + "version": "1.10.0", "license": "ISC", "dependencies": { "autoprefixer": "^10.2.5", diff --git a/package.json b/package.json index 66543401..88744a9a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mapbox/assembly", - "version": "1.9.2", + "version": "1.10.0", "description": "A CSS framework", "main": "index.js", "files": [ diff --git a/src/theming.css b/src/theming.css index e3451ba4..834491f5 100644 --- a/src/theming.css +++ b/src/theming.css @@ -196,6 +196,8 @@ *
cursor-notallowed
*
cursor-grab
*
cursor-grabbing
+ *
cursor-col-resize
+ *
cursor-row-resize
*/ .cursor-default { cursor: default !important; } .cursor-pointer { cursor: pointer !important; } @@ -204,6 +206,8 @@ .cursor-notallowed { cursor: not-allowed !important; } .cursor-grab { cursor: grab !important; } .cursor-grabbing { cursor: grabbing !important; } +.cursor-col-resize { cursor: col-resize !important; } +.cursor-row-resize { cursor: row-resize !important; } /** @endgroup */