Cirrus
Cirrus copied to clipboard
Investigate Sass >= 1.77.x Compatibility, Path Forwarding, etc.
@Spiderpig86 manually installed it and had to change the syntax
@forward "./absolute";
to
@forward "absolute";
to get things working again. Just to note that I receive these DEPRECATION WARNINGS
DEPRECATION WARNING: Sass's behavior for declarations that appear after nested
rules will be changing to match the behavior specified by CSS in an upcoming
version. To keep the existing behavior, move the declaration above the nested
rule. To opt into the new behavior, wrap the declaration in
& {}
.More info: https://sass-lang.com/d/mixed-decls
┌──> node_modules/cirrus-ui/src/components/forms.scss
30 │ background-color: rgba(0, 224, 0, 0.05) !important;
│ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ declaration
╵
┌──> node_modules/cirrus-ui/src/internal/_mixins.scss
26 │ ┌ &:focus {
27 │ │ box-shadow: 0 0 0 0.2rem transparentize(api.fill('success'), 1 - theme.$focus-opacity),
28 │ │ inset 0px 1px 8px rgba(0, 0, 0, 0.07);
29 │ │ }
│ └─── nested rule
╵
node_modules/cirrus-ui/src/components/forms.scss 30:13 cirrus-input() node_modules/cirrus-ui/src/components/forms.scss 147:9 @use node_modules/cirrus-ui/src/builds/core.scss 12:1 @forward cirrus-ui/src/cirrus-ext.scss 5:1 @use
Originally posted by @karneaud in https://github.com/Spiderpig86/Cirrus/issues/100#issuecomment-2381644602