diff --git a/website/docs/contributing/ADRs/ADRs.md b/website/docs/contributing/ADRs/ADRs.md index a5cf19f276..5acfa6618e 100644 --- a/website/docs/contributing/ADRs/ADRs.md +++ b/website/docs/contributing/ADRs/ADRs.md @@ -35,7 +35,6 @@ We have created a set of ADRs to help guide the development of the front end: * [Preferred component props usage](./front-end/preferred-component-props-usage.md) * [Preferred export](./front-end/preferred-export.md) * [Preferred function type](./front-end/preferred-function-type.md) -* [Preferred style import placement](./front-end/preferred-styles-import-placement.md) * [Preferred styling method](./front-end/preferred-styling-method.md) * [Preferred data mutation method](./front-end/preferred-data-mutation-method.md) * [Preferred data fetching method](./front-end/preferred-data-fetching-method.md) diff --git a/website/docs/contributing/ADRs/front-end/preferred-styles-import-placement.md b/website/docs/contributing/ADRs/front-end/deprecated/preferred-styles-import-placement.md similarity index 95% rename from website/docs/contributing/ADRs/front-end/preferred-styles-import-placement.md rename to website/docs/contributing/ADRs/front-end/deprecated/preferred-styles-import-placement.md index ce8bdea9f7..345a09ae57 100644 --- a/website/docs/contributing/ADRs/front-end/preferred-styles-import-placement.md +++ b/website/docs/contributing/ADRs/front-end/deprecated/preferred-styles-import-placement.md @@ -4,7 +4,7 @@ title: "ADR: preferred styles import placement" ## Background -SUPERSEDED BY [ADR: Preferred styling method](./preferred-styling-method.md) +SUPERSEDED BY [ADR: Preferred styling method](../preferred-styling-method.md) In the codebase, we have found a need to standardise where to locate the styles import. When using CSS modules, the styles import placement matters for the priority of the styles if you are passing through styles to other components. IE: diff --git a/website/docs/contributing/ADRs/front-end/preferred-styling-method.md b/website/docs/contributing/ADRs/front-end/preferred-styling-method.md index d0cefa27d3..62cfce13ff 100644 --- a/website/docs/contributing/ADRs/front-end/preferred-styling-method.md +++ b/website/docs/contributing/ADRs/front-end/preferred-styling-method.md @@ -2,7 +2,7 @@ title: "ADR: preferred styling method" --- -This document supersedes [ADR: preferred styles import placement](./preferred-styles-import-placement.md) +This document supersedes [ADR: preferred styles import placement](./deprecated/preferred-styles-import-placement.md) ## Background diff --git a/website/docs/contributing/frontend/overview.md b/website/docs/contributing/frontend/overview.md index 68a58201f2..b8a6183e09 100644 --- a/website/docs/contributing/frontend/overview.md +++ b/website/docs/contributing/frontend/overview.md @@ -15,7 +15,6 @@ We have created a set of ADRs to help guide the development of the frontend: * [Preferred component props usage](../ADRs/front-end/preferred-component-props-usage.md) * [Preferred export](../ADRs/front-end/preferred-export.md) * [Preferred function type](../ADRs/front-end/preferred-function-type.md) -* [Preferred style import placement](../ADRs/front-end/preferred-styles-import-placement.md) * [Preferred styling method](../ADRs/front-end/preferred-styling-method.md) * [Preferred data mutation method](../ADRs/front-end/preferred-data-mutation-method.md) * [Preferred data fetching method](../ADRs/front-end/preferred-data-fetching-method.md)