Skip to content

Commit 4d07316

Browse files
committed
Moved form-field styles to component folder
1 parent b5ea0a1 commit 4d07316

7 files changed

Lines changed: 7 additions & 1 deletion

File tree

src/assets/scss/6-components/molecules/__molecules.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
MOLECULES
33
\*------------------------------------*/
44

5-
@import "form-fields";
65
@import "forms";
76
@import "list-box";
87
@import "radio-list";

src/molecules/form-fields/checkbox-form-field.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import {
44
} from "../../atoms/forms/checkbox-input";
55
import React from "react";
66
import { StringUtils } from "andculturecode-javascript-core";
7+
import "./form-field.scss";
78

89
// -----------------------------------------------------------------------------------------
910
// #region Constants

src/assets/scss/6-components/molecules/_form-fields.scss renamed to src/molecules/form-fields/form-field.scss

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
.c-form-field {
24
@include margin-bottom(20px);
35

src/molecules/form-fields/input-form-field.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { CollectionUtils, StringUtils } from "andculturecode-javascript-core";
55
import { InputCharacterCount } from "../../atoms/forms/input-character-count";
66
import { InputTypes } from "../../atoms/constants/input-types";
77
import { InputProperties } from "../../atoms/interfaces/input-properties";
8+
import "./form-field.scss";
89

910
// -----------------------------------------------------------------------------------------
1011
// #region Constants

src/molecules/form-fields/password-form-field.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import uuid from "uuid";
33
import { InputProperties } from "../../atoms/interfaces/input-properties";
44
import { PasswordInput } from "../../atoms/forms/password-input";
55
import { StringUtils } from "andculturecode-javascript-core";
6+
import "./form-field.scss";
67

78
// -----------------------------------------------------------------------------------------
89
// #region Constants

src/molecules/form-fields/select-form-field.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import React from "react";
22
import uuid from "uuid";
33
import { Select, SelectOption } from "../../atoms/forms/select";
44
import { StringUtils, CollectionUtils } from "andculturecode-javascript-core";
5+
import "./form-field.scss";
56

67
// -----------------------------------------------------------------------------------------
78
// #region Constants

src/molecules/form-fields/text-area-form-field.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import React from "react";
22
import uuid from "uuid";
33
import { TextArea } from "../../atoms/forms/text-area";
44
import { StringUtils, CollectionUtils } from "andculturecode-javascript-core";
5+
import "./form-field.scss";
56

67
// -----------------------------------------------------------------------------------------
78
// #region Constants

0 commit comments

Comments
 (0)