-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(blockquote): remove margin (#1335)
Fixes #1332
- Loading branch information
1 parent
31b28dc
commit 7198739
Showing
2 changed files
with
7 additions
and
0 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 @@ | ||
--- | ||
"@rhds/elements": patch | ||
--- | ||
`<rh-blockquote>`: remove user-agent margin from blockquote, in accordance with [design guidelines][design] | ||
|
||
[design]: https://ux.redhat.com/elements/blockquote/style/ |
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 |
---|---|---|
|
@@ -15,6 +15,7 @@ | |
} | ||
} | ||
|
||
figure, | ||
blockquote { | ||
margin: 0; | ||
} | ||
|