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