ComposeModal, ComposeForm: adapt depending on privacy scope

This commit is contained in:
Alex Gleason 2021-10-13 14:24:22 -05:00
parent 4fb447596e
commit 8dd49343ad
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
3 changed files with 8 additions and 2 deletions

View file

@ -14,7 +14,9 @@ button {
box-sizing: border-box; box-sizing: border-box;
color: #fff; color: #fff;
cursor: pointer; cursor: pointer;
display: inline-block; display: inline-flex;
align-items: center;
justify-content: center;
font-family: inherit; font-family: inherit;
font-size: 14px; font-size: 14px;
font-weight: 500; font-weight: 500;
@ -31,6 +33,10 @@ button {
width: auto; width: auto;
transition: 0.2s; transition: 0.2s;
.svg-icon {
margin-right: 5px;
}
&:active, &:active,
&:focus, &:focus,
&:hover { &:hover {
@ -113,7 +119,7 @@ button {
} }
&.button--block { &.button--block {
display: block; display: flex;
width: 100%; width: 100%;
} }
} }