mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2024-12-22 16:26:28 +00:00
limit min height
This commit is contained in:
parent
2480d875b4
commit
976413e11b
@ -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/),
|
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).
|
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
|
## [1.1.0] - 2021-05-16
|
||||||
|
|
||||||
### Security
|
### Security
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
<style>
|
<style>
|
||||||
textarea {
|
textarea {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
min-height: calc(100vh - 30rem);
|
min-height: min(calc(100vh - 30rem), 30rem);
|
||||||
margin: 0;
|
margin: 0;
|
||||||
border: 2px solid var(--ui-bg-1);
|
border: 2px solid var(--ui-bg-1);
|
||||||
resize: vertical;
|
resize: vertical;
|
||||||
|
Loading…
Reference in New Issue
Block a user