mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
Add cursor-default utility
This commit is contained in:
parent
6bc3b0a9dd
commit
8eda042543
@ -3533,6 +3533,10 @@ button,
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.cursor-default {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.cursor-pointer {
|
||||
cursor: pointer;
|
||||
}
|
||||
@ -6493,6 +6497,10 @@ button,
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.sm\:cursor-default {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.sm\:cursor-pointer {
|
||||
cursor: pointer;
|
||||
}
|
||||
@ -9454,6 +9462,10 @@ button,
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.md\:cursor-default {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.md\:cursor-pointer {
|
||||
cursor: pointer;
|
||||
}
|
||||
@ -12415,6 +12427,10 @@ button,
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.lg\:cursor-default {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.lg\:cursor-pointer {
|
||||
cursor: pointer;
|
||||
}
|
||||
@ -15376,6 +15392,10 @@ button,
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.xl\:cursor-default {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.xl\:cursor-pointer {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
@ -3,6 +3,7 @@ import defineClasses from '../util/defineClasses'
|
||||
export default function() {
|
||||
return defineClasses({
|
||||
'cursor-auto': { cursor: 'auto' },
|
||||
'cursor-default': { cursor: 'default' },
|
||||
'cursor-pointer': { cursor: 'pointer' },
|
||||
'cursor-not-allowed': { cursor: 'not-allowed' },
|
||||
})
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user