Skip to content

Commit 6154e6e

Browse files
committed
fix: standardize padding values in use-styles.ts
1 parent 356c3b7 commit 6154e6e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/devtools-ui/src/styles/use-styles.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ const stylesFactory = (theme: Theme = 'dark') => {
210210
height: ${size[12]};
211211
font-family: ${fontFamily.sans};
212212
gap: ${tokens.size[0.5]};
213-
padding: 0px;
213+
padding: 0;
214214
&:hover {
215215
opacity: 0.7;
216216
}
@@ -474,7 +474,7 @@ const stylesFactory = (theme: Theme = 'dark') => {
474474
color: ${t(colors.gray[500], colors.gray[500])};
475475
border: none;
476476
display: inline-flex;
477-
padding: 0px;
477+
padding: 0;
478478
align-items: center;
479479
justify-content: center;
480480
cursor: pointer;
@@ -608,7 +608,7 @@ const stylesFactory = (theme: Theme = 'dark') => {
608608
background-color: transparent;
609609
border: none;
610610
gap: ${tokens.size[0.5]};
611-
padding: 0px;
611+
padding: 0;
612612
&:hover {
613613
opacity: 0.7;
614614
}

0 commit comments

Comments
 (0)