### Fix List Group Adjacent Selector SCSS Source: https://github.com/ayecode/geodirectory/blob/master/vendor/ayecode/wp-ayecode-ui/assets/scss/bootstrap-changes.txt Corrects the SCSS selector for adjacent list group items, as '& + &' was not compatible with the wrapper setup. ```scss /* & + & does not work with our wrapper setup */ File _list-group.scss 77 File _list-group-rtl.scss 77 FROM & + & { TO: & + .list-group-item { ``` -------------------------------- ### Fix Badge Hover Actions SCSS Source: https://github.com/ayecode/geodirectory/blob/master/vendor/ayecode/wp-ayecode-ui/assets/scss/bootstrap-changes.txt Adjusts the SCSS selector for badge hover actions to ensure correct targeting. ```scss /* Fix badge hover actions */ File _badge.scss 18 File /mixins/_badge.scss 5 FROM @at-root a#{&} { TO: @at-root #{selector-unify(&, "a")} { ``` -------------------------------- ### Fix SCSS Variable Compilation Source: https://github.com/ayecode/geodirectory/blob/master/vendor/ayecode/wp-ayecode-ui/assets/scss/bootstrap-changes.txt Modifies SCSS variable declaration for improved compilation, potentially resolving issues with prefixed variables. ```scss /* Fix compile (maybe not needed anymore?) */ File _root.scss 5, 9 FROM --#{$color}: #{$value}; TO: #{--#{$color}}: #{$value}; ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.