-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(quote): default styles for quote (#107)
Add default styles inside defaultTheme config object and update stories and snapshots of Quote component Resolves #101 Signed-off-by: Niloy Sikdar <[email protected]> Signed-off-by: Niloy Sikdar <[email protected]>
- Loading branch information
1 parent
d4aea35
commit a35fdbb
Showing
3 changed files
with
23 additions
and
7 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
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,9 +1,11 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`components/Quote Default smoke-test 1`] = ` | ||
<div id="quote" | ||
style="margin: 0px; padding: 0px;" | ||
> | ||
This is a Text Quote | ||
<div style="margin: 0px auto; max-width: 600px;"> | ||
<div id="quote" | ||
style="margin: 0px; padding: 6px 6px 6px 10px; border-left: 4px solid rgb(208, 215, 222); color: rgb(126, 134, 152); font-style: italic; font-size: 1.1em;" | ||
> | ||
This is a Text Quote Component written in TypeScript | ||
</div> | ||
</div> | ||
`; |