This commit is contained in:
cupcakearmy 2021-05-02 18:28:46 +02:00
parent d262a37db6
commit c4f545d1e8
No known key found for this signature in database
GPG Key ID: D28129AE5654D9D9
3 changed files with 27 additions and 4 deletions

View File

@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.0.3] - 2021-05-02
### Fixed
- Higher default text area
- Mobile touchups
## [1.0.2] - 2021-05-02
### Fixed

View File

@ -13,15 +13,20 @@
<style>
textarea {
width: 100%;
min-height: 8rem;
min-height: calc(100vh - 30rem);
margin: 0;
padding: 0;
border: 2px solid var(--ui-bg-1);
resize: vertical;
outline: none;
padding: 0.5rem;
}
@media screen and (max-width: 30rem) {
textarea {
min-height: calc(100vh - 25rem);
}
}
textarea:hover,
textarea:focus {
border-color: var(--ui-clr-primary);

View File

@ -62,8 +62,19 @@
header {
text-align: center;
margin-top: calc(min(15vh, 6rem));
margin-bottom: 4rem;
margin-top: 4rem;
margin-bottom: 2rem;
}
@media screen and (max-width: 30rem) {
header {
margin-top: 1rem;
margin-bottom: 1rem;
}
header svg {
max-height: 4rem;
}
}
header svg {