mirror of
https://github.com/tabler/tabler.git
synced 2026-08-01 16:04:37 +04:00
30 lines
740 B
Markdown
30 lines
740 B
Markdown
---
|
|
title: Cursors
|
|
menu: docs.cursors
|
|
---
|
|
|
|
### Cursor utilities
|
|
|
|
{% example html %}
|
|
<div class="row text-center">
|
|
<div class="col-4 mb-3">
|
|
<div class="cursor-auto bg-light py-3">Cursor auto</div>
|
|
</div>
|
|
<div class="col-4 mb-3">
|
|
<div class="cursor-pointer bg-light py-3">Cursor pointer</div>
|
|
</div>
|
|
<div class="col-4 mb-3">
|
|
<div class="cursor-move bg-light py-3">Cursor move</div>
|
|
</div>
|
|
<div class="col-4">
|
|
<div class="cursor-not-allowed bg-light py-3">Cursor not allowed</div>
|
|
</div>
|
|
<div class="col-4">
|
|
<div class="cursor-zoom-in bg-light py-3">Cursor zoom in</div>
|
|
</div>
|
|
<div class="col-4">
|
|
<div class="cursor-zoom-out bg-light py-3">Cursor zoom out</div>
|
|
</div>
|
|
</div>
|
|
{% endexample %}
|