Different font size for notes on mobile

main
Bob Mottram 2020-08-12 17:04:24 +00:00
parent c9d23f8142
commit bbad9879c1
1 changed files with 14 additions and 8 deletions

View File

@ -114,15 +114,14 @@ a:link {
width: 15%; width: 15%;
} }
textarea {
font-family: Arial, Helvetica, sans-serif;
font-size: var(--font-size4);
width: 90%;
background-color: var(--text-entry-background);
color: white;
}
@media screen and (min-width: 400px) { @media screen and (min-width: 400px) {
textarea {
font-family: Arial, Helvetica, sans-serif;
font-size: var(--font-size4);
width: 90%;
background-color: var(--text-entry-background);
color: white;
}
.followText { .followText {
font-size: var(--follow-text-size1); font-size: var(--follow-text-size1);
} }
@ -178,6 +177,13 @@ textarea {
} }
@media screen and (max-width: 1000px) { @media screen and (max-width: 1000px) {
textarea {
font-family: Arial, Helvetica, sans-serif;
font-size: var(--font-size);
width: 90%;
background-color: var(--text-entry-background);
color: white;
}
.followText { .followText {
font-size: var(--follow-text-size2); font-size: var(--follow-text-size2);
} }