Skip to content

Commit 9adefd8

Browse files
committed
Moved anchor styles to component folder
1 parent 15d2984 commit 9adefd8

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

src/assets/scss/4-elements/__elements.scss

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,9 @@
55
/**
66
* CONTENT
77
*
8-
* ANCHORS
9-
* General anchor link styles
108
*
119
*/
1210

13-
@import "anchors";
1411
@import "buttons";
1512
@import "checkboxes";
1613
@import "fieldsets";

src/atoms/anchors/anchor-with-icon.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { ButtonStyles } from "../constants/button-styles";
44
import { Icons } from "../constants/icons";
55
import { Anchor } from "../anchors/anchor";
66
import { Icon } from "../icons/icon";
7+
import "./anchor.scss";
78

89
export interface AnchorWithIconProps {
910
accessibleText?: string;
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@import "../../assets/scss/_global";
2+
13
/*------------------------------------*\
24
ANCHORS
35
\*------------------------------------*/

src/atoms/anchors/anchor.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { Link } from "react-router-dom";
22
import React, { forwardRef } from "react";
3+
import "./anchor.scss";
34

45
/*
56
-----------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)