diff options
author | Chocobozzz <me@florianbigard.com> | 2020-05-05 11:40:15 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-05-05 13:54:30 +0200 |
commit | 06827932a2f93f0f9483b7a39c201fafee3d0efb (patch) | |
tree | 135c16f4fc77bf205921e2158e4675296fb9d0fc /client/src/app | |
parent | 36f772fd8f1fb26cd5fe6f50332e4f44fc2c4e03 (diff) | |
download | PeerTube-06827932a2f93f0f9483b7a39c201fafee3d0efb.tar.gz PeerTube-06827932a2f93f0f9483b7a39c201fafee3d0efb.tar.zst PeerTube-06827932a2f93f0f9483b7a39c201fafee3d0efb.zip |
Fix textarea size
Diffstat (limited to 'client/src/app')
-rw-r--r-- | client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.scss | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.scss b/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.scss index 21c180a70..cc35aec57 100644 --- a/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.scss +++ b/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.scss | |||
@@ -5,9 +5,15 @@ h2 { | |||
5 | margin-bottom: 20px; | 5 | margin-bottom: 20px; |
6 | } | 6 | } |
7 | 7 | ||
8 | textarea, | ||
9 | input:not([type=submit]) { | 8 | input:not([type=submit]) { |
10 | @include peertube-input-text(340px); | 9 | @include peertube-input-text(340px); |
10 | |||
11 | display: block; | ||
12 | } | ||
13 | |||
14 | textarea { | ||
15 | @include peertube-textarea(340px, 200px); | ||
16 | |||
11 | display: block; | 17 | display: block; |
12 | } | 18 | } |
13 | 19 | ||