Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,4 @@ The release process is automated by [changesets]. After you familiarize yourself

[changelog]: ../CHANGELOG.md
[changesets]: https://github.com/atlassian/changesets

2 changes: 2 additions & 0 deletions docs/stories/principles/HTML.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,5 @@ Make use of `<thead>`, `<tfoot>`, `<tbody>`, and `<th>` tags (and `scope` attrib
</tbody>
</table>
```

<p>Hello from vidhi</>
2 changes: 1 addition & 1 deletion src/box/box-overlay.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
width: 448px;
margin-right: auto;
margin-left: auto;
background-color: var(--bgColor-default, var(--color-canvas-default));
background-color: black;
background-clip: padding-box;
border-color: var(--borderColor-default, var(--color-border-default));
// stylelint-disable-next-line primer/box-shadow
Expand Down
1 change: 1 addition & 0 deletions src/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ The `@primer/css` npm package includes a standalone CSS build of this module in


[scss]: https://sass-lang.com/documentation/syntax#scss

4 changes: 2 additions & 2 deletions src/forms/form-group.scss
Original file line number Diff line number Diff line change
Expand Up @@ -224,11 +224,11 @@
border-color: var(--borderColor-success-muted, var(--color-success-muted));

&::after {
border-bottom-color: var(--borderColor-success-muted, var(--color-success-muted));
border-bottom-color: pink;
}

&::before {
border-bottom-color: var(--borderColor-success-muted, var(--color-success-muted));
border-bottom-color: rgb(255, 255, 255);
}
}
}
Expand Down