Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
add 8px right margin to widget RoomSummaryCardButtons
Browse files Browse the repository at this point in the history
  • Loading branch information
toger5 committed Nov 16, 2021
1 parent 0b12ab8 commit b161586
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions res/css/views/right_panel/_RoomSummaryCard.scss
Original file line number Diff line number Diff line change
Expand Up @@ -170,22 +170,22 @@ limitations under the License.
}

.mx_RoomSummaryCard_app_pinToggle {
right: 0px;
right: 8px;

&::before {
mask-image: url('$(res)/img/element-icons/room/pin-upright.svg');
}
}
.mx_RoomSummaryCard_app_maximise {
right: 24px;
right: 34px; //24 + 8

&::before {
mask-size: 14px;
mask-image: url("$(res)/img/element-icons/maximise-expand.svg");
}
}
.mx_RoomSummaryCard_app_minimise {
right: 24px;
right: 34px; //24 + 8
&::before {
mask-size: 14px;
mask-image: url("$(res)/img/element-icons/minimise-collapse.svg");
Expand All @@ -194,14 +194,14 @@ limitations under the License.
}

.mx_RoomSummaryCard_app_options {
right: 24px;
right: 34px; //24 + 8
display: none;

&::before {
mask-image: url('$(res)/img/element-icons/room/ellipsis.svg');
}
&.mx_RoomSummaryCard_maximised_widget {
right: 48px;
right: 54px; //2*24 + 8
}
}

Expand Down

0 comments on commit b161586

Please sign in to comment.