Skip to content

Commit 85067e1

Browse files
committed
fix: stylelint errors
1 parent b0aa48a commit 85067e1

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

packages/react/src/Flash/Flash.module.css

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
.Flash {
22
position: relative;
3-
color: var(--fgColor-default);
43
padding: var(--base-size-16);
4+
margin-top: 0;
5+
color: var(--fgColor-default);
56
border-style: solid;
6-
border-width: 1px;
7+
border-width: var(--borderWidth-thin);
78
border-radius: var(--borderRadius-medium);
8-
margin-top: 0;
99

1010
&:where([data-variant='default']) {
1111
background-color: var(--bgColor-accent-muted);
@@ -44,9 +44,10 @@
4444
}
4545

4646
&:where([data-full]) {
47-
border-width: 1px 0px;
48-
border-radius: 0;
47+
/* stylelint-disable-next-line primer/spacing */
4948
margin-top: -1px;
49+
border-width: var(--borderWidth-thin) 0;
50+
border-radius: 0;
5051
}
5152

5253
& :where(p:last-child) {

0 commit comments

Comments
 (0)