PascalEugster
10/06/2023, 8:07 AMPascalEugster
10/06/2023, 8:09 AMrickbutterfield
10/06/2023, 8:30 AM:root
doesn't mean anything in the CSS and needs to be replaced with :host
PascalEugster
10/06/2023, 8:34 AMSCSS
@import 'bootstrap'
:root, :host { @extend :root; }
This did the trick for me and was discussed in:
https://github.com/twbs/bootstrap/issues/36688#issuecomment-1178522306PascalEugster
10/06/2023, 8:44 AMscss
@font-face {
font-family: 'EuclidCircularA-Light';
src: url('../fonts/EuclidCircularA-Light.eot');
src: url('../fonts/EuclidCircularA-Light.eot?#iefix') format('embedded-opentype'),
url('../fonts/EuclidCircularA-Light.woff2') format('woff2'),
url('../fonts/EuclidCircularA-Light.woff') format('woff'),
url('../fonts/EuclidCircularA-Light.ttf') format('truetype'),
url('../fonts/EuclidCircularA-Light.svg#EuclidCircularA-Light') format('svg');
font-weight: normal;
font-style: normal;
font-display: swap;
}
PascalEugster
10/06/2023, 8:47 AMrickbutterfield
10/06/2023, 8:51 AMpackage.manifest
so they're loaded at the global backoffice level. I think @Dean Leigh has an example of thisrickbutterfield
10/06/2023, 8:51 AM