Fix stylelint

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2020-07-31 21:30:52 +02:00
parent ccb09fdab8
commit d6b03cd69c
18 changed files with 38 additions and 12 deletions

View File

@@ -1,6 +1,7 @@
.fade-enter-active {
transition: opacity 250ms;
}
.fade-enter, .fade-leave-to {
opacity: 0;
}
@@ -9,6 +10,7 @@
.zoom-enter-active {
animation: zoom-in var(--animation-quick);
}
.zoom-leave-active {
animation: zoom-in var(--animation-quick) reverse;
will-change: transform;

View File

@@ -12,7 +12,7 @@
}
}
input[type="submit"] {
input[type='submit'] {
width: 44px;
height: 44px;
margin: 0;
@@ -25,9 +25,11 @@
right: 0;
}
}
.comment {
margin-bottom: 10px;
}
.comment--header {
display: flex;
align-items: center;

View File

@@ -74,17 +74,19 @@ input[type=checkbox] {
min-height: 12px;
}
li input[type="checkbox"].checkbox + label::before {
li input[type='checkbox'].checkbox + label::before {
margin-left: -15px;
}
input[type="checkbox"].checkbox + label::before {
input[type='checkbox'].checkbox + label::before {
position: relative;
z-index: 100;
margin-right: 10px;
margin-top: 0;
}
li input[type="checkbox"].checkbox:not(:checked) + label::before {
li input[type='checkbox'].checkbox:not(:checked) + label::before {
background-color: var(--color-main-background);
}