Make textfield bigger

This commit is contained in:
Citlali del Rey 2023-01-16 17:53:31 -08:00
parent fd0b3ba7e0
commit 51b817cad3
Signed by: nullobsi
GPG Key ID: 933A1F44222C2634
3 changed files with 13 additions and 3 deletions

View File

@ -48,6 +48,11 @@ a:visited {
a:visited {
color: #7c5263;
}
textarea {
background: #ffffff;
color: #211c1b;
}
}
header {
@ -124,6 +129,11 @@ textarea {
color: #f6f6f6;
}
textarea.big {
width: 100%;
height: 5em;
}
.error {
color: #f00;
}

View File

@ -49,7 +49,7 @@
<p>
%= label_for sshKeys => 'SSH keys. Add a newline if you have multiple.'
<br>
%= text_area sshKeys => $sshKeys, id => 'sshKeys'
%= text_area sshKeys => $sshKeys, id => 'sshKeys', class=>'big'
</p>
<p>
Leave this blank if you don't want to change your password.

View File

@ -43,12 +43,12 @@
<p>
%= label_for pubkey => 'Put your SSH keys here. Separate them by a newline if you have multiple.'
<br>
%= text_area 'pubkey', id=>'pubkey'
%= text_area 'pubkey', id=>'pubkey', class=>'big'
</p>
<p>
%= label_for bio => 'Tell us a bit about yourself here. Feel free to put some links, too :)'
<br>
%= text_area 'bio', id=>'bio'
%= text_area 'bio', id=>'bio', class=>'big'
</p>
%= submit_button
% end