limit min height

This commit is contained in:
cupcakearmy 2021-05-17 09:45:01 +02:00
parent 2480d875b4
commit 976413e11b
No known key found for this signature in database
GPG Key ID: D28129AE5654D9D9
2 changed files with 8 additions and 1 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.1.1] - 2021-05-17
### Fixed
- Height on big displays
- About page
## [1.1.0] - 2021-05-16
### Security

View File

@ -13,7 +13,7 @@
<style>
textarea {
width: 100%;
min-height: calc(100vh - 30rem);
min-height: min(calc(100vh - 30rem), 30rem);
margin: 0;
border: 2px solid var(--ui-bg-1);
resize: vertical;