Selecting emoji names on the emoji search results screen

merge-requests/30/head
Bob Mottram 2022-04-19 10:54:42 +01:00
parent e6c686b4d1
commit 37e1973780
2 changed files with 20 additions and 14 deletions

View File

@ -220,8 +220,8 @@ input[type=text] {
user-select: all; user-select: all;
} }
.hashtagswarm img { .hashtagswarm img {
width: 5%; width: 5%;
min-width: 5%; min-width: 5%;
} }
.followText { .followText {
font-size: var(--follow-text-size1); font-size: var(--follow-text-size1);
@ -253,13 +253,13 @@ input[type=text] {
} }
input[type=checkbox] input[type=checkbox]
{ {
-ms-transform: scale(2); -ms-transform: scale(2);
-moz-transform: scale(2); -moz-transform: scale(2);
-webkit-transform: scale(2); -webkit-transform: scale(2);
-o-transform: scale(2); -o-transform: scale(2);
transform: scale(2); transform: scale(2);
padding: 10px; padding: 10px;
margin: 20px 30px; margin: 20px 30px;
} }
} }
@ -274,8 +274,8 @@ input[type=text] {
user-select: all; user-select: all;
} }
.hashtagswarm img { .hashtagswarm img {
width: 5%; width: 5%;
min-width: 5%; min-width: 5%;
} }
.followText { .followText {
font-size: var(--follow-text-size2); font-size: var(--follow-text-size2);
@ -319,7 +319,7 @@ input[type=text] {
@media screen and (max-width: 480px) { @media screen and (max-width: 480px) {
body, html { body, html {
min-width: 400px; min-width: 400px;
} }
.hashtagswarm { .hashtagswarm {
font-size: var(--font-size2); font-size: var(--font-size2);
@ -331,8 +331,8 @@ input[type=text] {
user-select: all; user-select: all;
} }
.hashtagswarm img { .hashtagswarm img {
width: 5%; width: 5%;
min-width: 5%; min-width: 5%;
} }
.followText { .followText {
font-size: var(--font-size2); font-size: var(--font-size2);

View File

@ -1082,6 +1082,12 @@ div.container {
margin: 0 20%; margin: 0 20%;
} }
h3 {
-webkit-user-select: all;
-ms-user-select: all;
user-select: all;
}
@media screen and (min-width: 400px) { @media screen and (min-width: 400px) {
body, html { body, html {
background-color: var(--main-bg-color); background-color: var(--main-bg-color);