Skip to content

Commit

Permalink
fix: video mute button styles (#1755)
Browse files Browse the repository at this point in the history
  • Loading branch information
aeharding authored Nov 29, 2024
1 parent 805d8b8 commit a5dd875
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
4 changes: 3 additions & 1 deletion src/features/inbox/InboxItemMoreActions.module.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
.button {
composes: plainButton from "#/features/shared/shared.module.css";

font-size: 1.12em;
&& {
font-size: 1.12em;
}
}
9 changes: 5 additions & 4 deletions src/features/media/video/Player.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,11 @@
top: 0;
right: 0;

padding: 14px;
font-size: 26px;

color: #aaa;
&& {
padding: 14px;
font-size: 26px;
color: #aaa;
}

svg {
filter: blur(10px) invert(80%);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
.button {
composes: plainButton from "#/features/shared/shared.module.css";

margin: -6px 0; /* prevent size from breaking line height */
&& {
margin: -6px 0; /* prevent size from breaking line height */
}
}

.ellipsisIcon {
Expand Down

0 comments on commit a5dd875

Please sign in to comment.