From ab53d0abbcead645b71a36416bf7fe29a2631d42 Mon Sep 17 00:00:00 2001 From: Vidhi Sen Date: Mon, 13 Oct 2025 20:42:01 +0530 Subject: [PATCH] Vidhisen --- RELEASING.md | 1 + docs/stories/principles/HTML.mdx | 2 ++ src/box/box-overlay.scss | 2 +- src/core/README.md | 1 + src/forms/form-group.scss | 4 ++-- 5 files changed, 7 insertions(+), 3 deletions(-) diff --git a/RELEASING.md b/RELEASING.md index 6b7118ffb1..ed854b79d3 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -50,3 +50,4 @@ The release process is automated by [changesets]. After you familiarize yourself [changelog]: ../CHANGELOG.md [changesets]: https://github.com/atlassian/changesets + diff --git a/docs/stories/principles/HTML.mdx b/docs/stories/principles/HTML.mdx index 84bafccd52..951aa6f5d5 100644 --- a/docs/stories/principles/HTML.mdx +++ b/docs/stories/principles/HTML.mdx @@ -76,3 +76,5 @@ Make use of ``, ``, ``, and `` tags (and `scope` attrib ``` + +

Hello from vidhi diff --git a/src/box/box-overlay.scss b/src/box/box-overlay.scss index dbf2356d4b..f6964e5f4a 100644 --- a/src/box/box-overlay.scss +++ b/src/box/box-overlay.scss @@ -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 diff --git a/src/core/README.md b/src/core/README.md index ad82fe5255..979b11e2cd 100644 --- a/src/core/README.md +++ b/src/core/README.md @@ -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 + diff --git a/src/forms/form-group.scss b/src/forms/form-group.scss index fc1b3c6266..417fa602b4 100644 --- a/src/forms/form-group.scss +++ b/src/forms/form-group.scss @@ -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); } } }