Skip to content

Commit

Permalink
fix stylelint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ChunkyProgrammer committed Jan 20, 2025
1 parent d6962c1 commit 8f6b486
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/renderer/components/CommentSection/CommentSection.css
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
font-size: 14px;
margin-block-start: -10px;
margin-inline-start: 70px;
word-break: break-word;
word-wrap: break-word;
}

.commentPinned {
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/components/SideNav/SideNav.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
.navOption .navLabel {
margin-inline-start: 40px;
overflow: hidden;
word-break: break-word;
word-wrap: break-word;
}

.navOption:hover,
Expand Down Expand Up @@ -94,7 +94,7 @@
.navChannel .navLabel {
overflow: hidden;
margin-inline-start: 40px;
word-break: break-word;
word-wrap: break-word;
font-size: 12px;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,15 @@
.optionsRow {
/* Switch to rows from columns */
grid-template-columns: auto;
/* stylelint-disable-next-line declaration-property-value-no-unknown */
grid-template-rows: repeat(auto-fit, auto);
align-items: stretch;
}

.tightOptions {
/* Switch to rows from columns */
grid-template-columns: auto;
/* stylelint-disable-next-line declaration-property-value-no-unknown */
grid-template-rows: repeat(auto-fit, auto);
align-items: stretch;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
font-size: 20px;
text-decoration: none;
word-wrap: break-word;
word-break: break-word;
}

.videoPresenceCount {
Expand Down
1 change: 1 addition & 0 deletions src/renderer/components/top-nav/top-nav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@
margin-inline-start: $effect-distance;

&.filterChanged {
/* stylelint-disable-next-line declaration-property-value-no-unknown */
box-shadow: 0 0 $effect-distance var(--primary-color);
color: var(--primary-color);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
font-weight: normal;
margin-block: 0;
margin-inline: 0;
word-break: break-word;
word-wrap: break-word;
}

.videoMetrics,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
color: var(--tertiary-text-color);
padding: 0;
margin: 0;
word-break: break-word;
word-wrap: break-word;
}

:deep(.liveChatEmoji) {
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/scss-partials/_ft-list-item.scss
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ $watched-transition-duration: 0.5s;

.thumbnailImage {
opacity: 0.3;
/* stylelint-disable-next-line declaration-property-value-no-unknown */
transition: opacity $watched-transition-duration;
}

Expand Down Expand Up @@ -238,7 +239,6 @@ $watched-transition-duration: 0.5s;
font-size: 20px;
grid-area: title;
text-decoration: none;
word-break: break-word;
word-wrap: break-word;

@include low-contrast-when-watched(var(--primary-text-color));
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/views/About/About.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
display: grid;
grid-gap: 16px;
grid-template-columns: 1fr 1fr;
margin-block: 80;
margin-block: 80px;
margin-inline: auto;
max-inline-size: 860px;
}
Expand All @@ -39,7 +39,7 @@
justify-content: start;
margin: 0;
padding: 18px;
word-break: break-word;
word-wrap: break-word;
}

.icon {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@
text-overflow: ellipsis;
overflow-wrap: break-word;
inline-size: 100%;
display: box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
padding-block: 0;
Expand Down

0 comments on commit 8f6b486

Please sign in to comment.