Lint compliance

This commit is contained in:
yflory 2023-09-19 15:06:54 +02:00
parent 9b344460b9
commit bc9a335e76
6 changed files with 19 additions and 18 deletions

View file

@ -144,7 +144,7 @@
display: flex;
> * {
overflow:auto;
overflow: auto;
width: 100%;
min-width: 260px;
max-width: 500px;

View file

@ -147,13 +147,13 @@ body.html {
margin-right: 0.5em;
}
}
.big-container{
.big-container {
width: 100%;
}
.input-container{
display:flex;
.input-container {
display: flex;
flex-direction: row;
align-items:center;
align-items: center;
}
}
}

View file

@ -52,8 +52,8 @@
margin-right: 0px;
}
}
.label{
display:none;
.label {
display: none;
}
}

View file

@ -36,8 +36,8 @@
.cp-hidden {
display: none;
}
.label{
display:none;
.label {
display: none;
}
}
.alertify {

View file

@ -26,17 +26,17 @@
min-width: 30%;
}
}
.input-container{
display:flex;
.input-container {
display: flex;
flex-direction: row;
align-items:center;
justify-content:center;
input{
margin-top:5px;
align-items: center;
justify-content: center;
input {
margin-top: 5px;
}
}
.register-label{
display:none;
.register-label {
display: none;
}
padding-bottom: 3em;
min-height: 5vh;
@ -106,7 +106,7 @@
.tools_placeholder-color();
}
.checkbox-container {
margin-top:0.5rem;
margin-top: 0.5rem;
color: @cryptpad_text_col;
}
button#register {

View file

@ -184,6 +184,7 @@ Pinning.pinChannel = function (Env, safeKey, channels, cb) {
Env.pinStore.message(safeKey, JSON.stringify(['PIN', toStore, +new Date()]),
function (e) {
if (e) { return void cb(e); }
if (!session || !session.channels) { return; }
toStore.forEach(function (channel) {
session.channels[channel] = true;
});