Skip to content

Commit c650799

Browse files
committed
Fixing stylelint issues
1 parent cdc6586 commit c650799

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

src/box/box-overlay.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
background-clip: padding-box;
88
border-color: var(--borderColor-default, var(--color-border-default));
99
// stylelint-disable-next-line primer/box-shadow
10-
box-shadow: 0 0 18px rgba(0, 0, 0, 0.4);
10+
box-shadow: 0 0 18px rgb(0, 0, 0, 0.4);
1111

1212
.Box-header {
1313
margin: 0;

src/header/header.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@
4646

4747
&::placeholder {
4848
// stylelint-disable-next-line primer/colors
49-
color: rgba(255, 255, 255, 0.75);
49+
color: rgb(255, 255, 255, 0.75);
5050
}
5151
}

src/marketing/buttons/button.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
z-index: -1;
3535
content: '';
3636
// stylelint-disable-next-line primer/colors
37-
background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%) !important;
37+
background: linear-gradient(180deg, rgb(255, 255, 255, 0.15) 0%, rgb(255, 255, 255, 0) 100%) !important;
3838
border-radius: inherit;
3939
opacity: 0;
4040
opacity: 0;
@@ -132,11 +132,11 @@
132132
// stylelint-disable-next-line primer/colors
133133
color: #fff;
134134
// stylelint-disable-next-line primer/colors
135-
background: linear-gradient(180deg, rgba(52, 183, 89, 0.15) 0%, rgba(46, 164, 79, 0) 100%), rgb(46, 164, 79) !important;
135+
background: linear-gradient(180deg, rgb(52, 183, 89, 0.15) 0%, rgb(46, 164, 79, 0) 100%), rgb(46, 164, 79) !important;
136136

137137
&::before {
138138
// stylelint-disable-next-line primer/colors
139-
background: linear-gradient(180deg, rgba(52, 183, 89, 0.15) 0%, rgba(46, 164, 79, 0) 100%) !important;
139+
background: linear-gradient(180deg, rgb(52, 183, 89, 0.15) 0%, rgb(46, 164, 79, 0) 100%) !important;
140140
}
141141

142142
// fallback :focus state

src/marketing/support/variables.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@ $marketing-position-variants: (
126126
lg: '-lg',
127127
) !default;
128128

129-
$mktg-btn-shadow-hover-light: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02);
130-
$mktg-btn-shadow-hover-dark: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07);
129+
$mktg-btn-shadow-hover-light: 0 3px 2px rgb(0, 0, 0, 0.07), 0 7px 5px rgb(0, 0, 0, 0.04), 0 12px 10px rgb(0, 0, 0, 0.03), 0 22px 18px rgb(0, 0, 0, 0.03), 0 42px 33px rgb(0, 0, 0, 0.02), 0 100px 80px rgb(0, 0, 0, 0.02);
130+
$mktg-btn-shadow-hover-dark: 0 4px 7px rgb(0, 0, 0, 0.15), 0 100px 80px rgb(255, 255, 255, 0.02), 0 42px 33px rgb(255, 255, 255, 0.024), 0 22px 18px rgb(255, 255, 255, 0.028), 0 12px 10px rgb(255, 255, 255, 0.034), 0 7px 5px rgb(255, 255, 255, 0.04), 0 3px 2px rgb(255, 255, 255, 0.07);
131131

132132
@include color-variables(
133133
(

0 commit comments

Comments
 (0)