1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-16 10:34:07 +02:00

Add stretched-link

This commit is contained in:
louismaxime.piton
2023-08-23 12:23:09 +02:00
parent 886a782568
commit 02ed5f24e3

View File

@@ -5,11 +5,11 @@
.stretched-link { .stretched-link {
&::#{$stretched-link-pseudo-element} { &::#{$stretched-link-pseudo-element} {
position: absolute; position: absolute;
top: 0; top: var(--#{$prefix}stretched-top, 0);
right: 0; right: var(--#{$prefix}stretched-right, 0);
bottom: 0; bottom: var(--#{$prefix}stretched-bottom, 0);
left: 0; left: var(--#{$prefix}stretched-left, 0);
z-index: $stretched-link-z-index; z-index: var(--#{$prefix}stretched-z-index, $stretched-link-z-index);
content: ""; content: "";
} }
} }