Skip to content

Commit

Permalink
fix emoji style issue
Browse files Browse the repository at this point in the history
  • Loading branch information
imndx committed Dec 4, 2019
1 parent f527701 commit 2fce66d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/js/ui/components/MessageInput/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
align-items: center;
justify-content: space-between;

& input {
& > input {
height: 60px;
width: 100%;
margin-left: 32px;
Expand Down Expand Up @@ -64,7 +64,7 @@
.container {
height: 46px;

& input {
& > input {
height: 46px;
margin-left: 20px;
line-height: 46px;
Expand Down
14 changes: 7 additions & 7 deletions src/js/ui/pages/Footer/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
box-shadow: inset 0 1px 0 0 var(--shadow-color);
z-index: 9;

& nav {
& > nav {
display: flex;
width: calc(311px - 34px);
height: 60px;
Expand All @@ -20,21 +20,21 @@
box-shadow: inset -1px 0 0 0 var(--shadow-color);
}

& nav span {
& > nav span {
display: block;
width: 24px;
height: 27px;
text-align: center;
cursor: pointer;
}

& nav i {
& > nav i {
color: var(--icon-color);
font-size: 24px;
cursor: pointer;
}

& nav span:hover i {
& > nav span:hover i {
color: var(--active) !important;
}
}
Expand Down Expand Up @@ -148,18 +148,18 @@

@media (width <= 800px) {
.footer {
& nav {
& > nav {
width: calc(280px - 34px);
padding: 14px 17px 0;
height: 46px;
}

& nav span {
& > nav span {
width: 20px;
height: 20px;
}

& nav i {
& > nav i {
font-size: 16px;
}
}
Expand Down

0 comments on commit 2fce66d

Please sign in to comment.