-
Notifications
You must be signed in to change notification settings - Fork 945
Closed
Labels
breaking changecleanup/refactoringdesign/styleFront-end site design / stylingFront-end site design / stylinge0-minutesEffort < 60 minEffort < 60 min
Milestone
Description
Consider dropping prepend()
, in favor of using join()
directly:
docsy/assets/scss/support/_functions.scss
Lines 3 to 5 in c8530e3
@function prepend($list, $value) { | |
@return join($value, $list); | |
} |
In doing so we can eliminate https://github.com/google/docsy/blob/main/assets/scss/support/_functions.scss.
AFAICT, there is only one instance of the call to prepend()
in Docsy SCSS.
The other function that was in this file (color-diff()
) was removed by:
Metadata
Metadata
Assignees
Labels
breaking changecleanup/refactoringdesign/styleFront-end site design / stylingFront-end site design / stylinge0-minutesEffort < 60 minEffort < 60 min