We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0aa48a commit 85067e1Copy full SHA for 85067e1
packages/react/src/Flash/Flash.module.css
@@ -1,11 +1,11 @@
1
.Flash {
2
position: relative;
3
- color: var(--fgColor-default);
4
padding: var(--base-size-16);
+ margin-top: 0;
5
+ color: var(--fgColor-default);
6
border-style: solid;
- border-width: 1px;
7
+ border-width: var(--borderWidth-thin);
8
border-radius: var(--borderRadius-medium);
- margin-top: 0;
9
10
&:where([data-variant='default']) {
11
background-color: var(--bgColor-accent-muted);
@@ -44,9 +44,10 @@
44
}
45
46
&:where([data-full]) {
47
- border-width: 1px 0px;
48
- border-radius: 0;
+ /* stylelint-disable-next-line primer/spacing */
49
margin-top: -1px;
+ border-width: var(--borderWidth-thin) 0;
50
+ border-radius: 0;
51
52
53
& :where(p:last-child) {
0 commit comments