Skip to content

Commit ba16464

Browse files
committed
Moved card styles to component folder
1 parent d8b9b1f commit ba16464

3 files changed

Lines changed: 4 additions & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*------------------------------------*\
22
MOLECULES
33
\*------------------------------------*/
4-
@import "card";
4+
55
@import "drag-and-drop-list-box";
66
@import "dropdown-button";
77
@import "error-banner";

src/assets/scss/6-components/molecules/_card.scss renamed to src/molecules/cards/card.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-card {
24
position: relative;
35
box-shadow: 0px 3px 10px rgba(0, 26, 57, 0.2);

src/molecules/cards/card.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import React, { PropsWithChildren } from "react";
22
import { Paragraph } from "../../atoms/typography/paragraph";
3+
import "./card.scss";
34

45
// -------------------------------------------------------------------------------------------------
56
// #region Constants

0 commit comments

Comments
 (0)