Merge branch 'master' into fix-issues

This commit is contained in:
Sumit Kumar Soni 2023-11-18 19:13:12 +05:30 committed by GitHub
commit ca26e85364
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 5 deletions

View File

@ -79,8 +79,6 @@ const retroshareId = () => {
'textarea[readonly].textArea',
{
id: 'retroId',
rows: 1,
cols: v.attrs.ownCert.length + 2,
placeholder: 'certificate',
onclick: () => {
document.getElementById('retroId').select();

View File

@ -52,7 +52,12 @@ function loginComponent() {
const buttonLogin = () =>
m(
'button[type=submit].submit-btn#loginBtn',
{ onclick: () => verifyLogin(uname, passwd, url) },
{
onclick: (ev) => {
ev.preventDefault();
verifyLogin(uname, passwd, url);
},
},
'Login'
);

View File

@ -53,7 +53,9 @@
border-radius: 4px;
background: transparentize($dark-color, 0.95);
& .textArea {
padding: 0.25rem;
padding: 0;
width: 100%;
min-height: 75px;
font-size: 1rem;
font-family: monospace;
background: transparent;

File diff suppressed because one or more lines are too long