Selecting emoji names on the emoji search results screen

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

View File

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