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

Commit

Permalink
Merge pull request #6852 from matrix-org/gsouquet/fix-18999
Browse files Browse the repository at this point in the history
Fix spacing for message composer buttons
  • Loading branch information
dbkr authored Sep 22, 2021
2 parents b13fdb6 + dc979a3 commit 40dedfa
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions res/css/views/rooms/_MessageComposer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -185,16 +185,26 @@ limitations under the License.
}
}

.mx_ContextualMenu {
.mx_MessageComposer_button {
padding-left: calc(var(--size) + 6px);
}
}

.mx_MessageComposer_button {
--size: 26px;
position: relative;
margin-right: 6px;
cursor: pointer;
height: var(--size);
line-height: var(--size);
width: auto;
padding-left: calc(var(--size) + 5px);
padding-left: var(--size);
border-radius: 100%;
margin-right: 6px;

&:last-child {
margin-right: auto;
}

&::before {
content: '';
Expand Down

0 comments on commit 40dedfa

Please sign in to comment.