Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

StatusBarArea height of 50px when typing/calling #3279

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ limitations under the License.

.mx_RoomStatusBar {
margin-left: 65px;
min-height: 50px;
min-height: 48px;
}

/* position the indicator in the same place horizontally as .mx_EventTile_avatar. */
Expand All @@ -31,8 +31,8 @@ limitations under the License.
}

.mx_RoomStatusBar_callBar {
height: 50px;
line-height: 50px;
height: 48px;
line-height: 48px;
}

.mx_RoomStatusBar_placeholderIndicator span {
Expand Down Expand Up @@ -146,8 +146,8 @@ limitations under the License.
}

.mx_RoomStatusBar_typingBar {
height: 50px;
line-height: 50px;
height: 48px;
line-height: 48px;

color: $primary-fg-color;
opacity: 0.5;
Expand Down