We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 394fd36 commit ff82799Copy full SHA for ff82799
docs/documentation/modifiers/helpers.html
@@ -63,5 +63,9 @@
63
<td><code>is-sr-only</code></td>
64
<td>Hide elements <strong>visually</strong> but keep the element available to be announced by a <strong>screen reader</strong></td>
65
</tr>
66
+ <tr>
67
+ <td><code>is-relative</code></td>
68
+ <td>Applies <code>position: relative</code> to the element.</td>
69
+ </tr>
70
</tbody>
71
</table>
sass/base/helpers.sass
@@ -274,3 +274,6 @@ $displays: 'block' 'flex' 'inline' 'inline-block' 'inline-flex'
274
275
.is-unselectable
276
@extend %unselectable
277
+
278
+.is-relative
279
+ position: relative
0 commit comments