Skip to content
Snippets Groups Projects

feat(Bootstrap): Remove color variable settings in _reboot.scss

All threads resolved!
Files
3
+ 14
1
@@ -3,6 +3,19 @@ h1, h2, h3, h4, h5, h6,
@apply gl-text-heading;
}
a {
@apply gl-text-link gl-no-underline hover:gl-text-link hover:gl-underline;
}
// Copied from https://github.com/twbs/bootstrap/blob/main/scss/_reboot.scss#L254:
// And undo these styles for placeholder links/named anchors (without href).
// It would be more straightforward to just use a[href] in previous block, but that
// causes specificity issues in many other styles that are too complex to fix.
// See https://github.com/twbs/bootstrap/issues/19402
a:not([href]):not([class]) {
@apply gl-text-inherit gl-no-underline hover:gl-text-inherit hover:gl-no-underline;
}
caption {
@apply gl-text-subtle;
}
\ No newline at end of file
}
Loading