Skip to content

Commit

Permalink
Fix stylelint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmz committed May 5, 2024
1 parent 5116943 commit 36a1e41
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/friends-page/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
word-wrap: break-word;
font-size: rem(12px);
line-height: rem(16px);
margin: 0 rem(6px) rem(20px) rem(6px);
margin: 0 rem(6px) rem(20px);
}

.userCellPlaceholder {
Expand Down
2 changes: 1 addition & 1 deletion src/components/user-profile-head.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ $actions-padding: 0.75em;
'actions actions actions'
'errors errors errors';
grid-gap: 0 1em;
padding: 0.5em 0 $actions-padding 0;
padding: 0.5em 0 $actions-padding;
border-bottom: 1px solid var(--separator-color);
margin-bottom: 1em;

Expand Down
6 changes: 3 additions & 3 deletions styles/helvetica/boxes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
padding: rem(5px) 0 rem(5px) rem(11px);

@media (max-width: 991px) {
padding: rem(15px) 0 0 0;
padding: rem(15px) 0 0;
}

font-size: rem(11px);
Expand All @@ -136,7 +136,7 @@
.box-body {
font-family: Vazir, Arial, sans-serif;
font-size: rem(15px);
padding: rem(10px) 0 rem(3px) 0;
padding: rem(10px) 0 rem(3px);
background-color: #fff;

a {
Expand Down Expand Up @@ -210,7 +210,7 @@
}

.box-footer {
padding: rem(5px) 0 rem(10px) 0;
padding: rem(5px) 0 rem(10px);
font-size: rem(11px);

a {
Expand Down
2 changes: 1 addition & 1 deletion styles/shared/user-name.scss
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@

.user-card-actions {
border-top: 1px #e4e4e4 solid;
padding: rem(5px) rem(10px) rem(6px) rem(10px);
padding: rem(5px) rem(10px) rem(6px);
background-color: #f4f4f4;
border-bottom-right-radius: 2px;
border-bottom-left-radius: 2px;
Expand Down

0 comments on commit 36a1e41

Please sign in to comment.