Skip to content

Commit

Permalink
Replace justify-self: left & justify-self: right with justify-self; s…
Browse files Browse the repository at this point in the history
…tart and justify-self: end
  • Loading branch information
kommunarr committed Aug 29, 2023
1 parent a16c7f7 commit a96fc0c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/renderer/scss-partials/_ft-list-item.scss
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ $watched-transition-duration: 0.5s;
align-self: flex-start;
background-color: var(--bg-color);
color: var(--primary-text-color);
justify-self: left;
justify-self: start;
opacity: $thumbnail-overlay-opacity;
padding: 2px;
pointer-events: none;
Expand All @@ -120,7 +120,7 @@ $watched-transition-duration: 0.5s;
border-radius: 5px;
color: var(--primary-text-color);
font-size: 15px;
justify-self: right;
justify-self: end;
line-height: 1.2;
margin-block: 0 4px;
margin-inline: 0 4px;
Expand All @@ -142,14 +142,14 @@ $watched-transition-duration: 0.5s;
.externalPlayerIcon {
align-self: flex-end;
font-size: 17px;
justify-self: left;
justify-self: start;
margin-block-end: 4px;
margin-inline-start: 4px;
}

.favoritesIcon {
font-size: 17px;
justify-self: right;
justify-self: end;
margin-inline-end: 3px;
margin-block-start: 3px;
height: fit-content;
Expand All @@ -167,7 +167,7 @@ $watched-transition-duration: 0.5s;
align-self: stretch;
display: grid;
font-size: 20px;
justify-self: right;
justify-self: end;
width: 60px;

.background {
Expand Down

0 comments on commit a96fc0c

Please sign in to comment.