-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ladle doesnt recognize the base scss style (#208)
* feat: Resolve Ladle error Criei um provider de acordo com a documentação do ladle e importei o base.css nele feat #149 * refactor: remove path alias and ajust proportion 1rem to 10px Removi o path alias e ajustei a proporção do 1rem to 10px re #149 * refactor: Remove alias import re #149 --------- Co-authored-by: Andre Almeida <andre-silva78@hotmail.com>
- Loading branch information
1 parent
8aeaed2
commit c12a7df
Showing
6 changed files
with
19 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import type { GlobalProvider } from '@ladle/react'; | ||
import React from 'react'; | ||
|
||
import '../src/styles/base.scss'; | ||
|
||
export const Provider: GlobalProvider = ({ children }) => <div>{children}</div>; |
2 changes: 1 addition & 1 deletion
2
src/components/CharacterLimitMainText/components/CharacterLimit.module.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@use '~styles/global'; | ||
@use '../../styles/global'; | ||
|
||
.inputContainer { | ||
width: 100%; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@use '~styles/global.scss'; | ||
@use '../../styles/global'; | ||
|
||
.wrapper { | ||
width: 100%; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters