: rotating_light: Lint

This commit is contained in:
Liyas Thomas
2019-10-25 13:44:34 +05:30
parent 96adfa0b5a
commit a09d7d76d3
35 changed files with 3133 additions and 2620 deletions

View File

@@ -2,9 +2,11 @@ $responsiveWidth: 720px;
// Make theme transition smoother.
body.afterLoad {
&, & * {
&,
& * {
transition: background-color 0.2s ease-in-out,
border 0.2s ease-in-out;
border 0.2s ease-in-out;
}
}
@@ -180,7 +182,7 @@ h3.title {
header,
footer {
& > div {
&>div {
display: flex;
padding: 16px;
width: 100%;
@@ -218,7 +220,6 @@ button {
transition: all 0.2s ease-in-out;
fill: var(--act-color);
height: 40px;
box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.02);
cursor: pointer;
span {
@@ -353,7 +354,7 @@ input[type="checkbox"] {
display: none;
&,
& + label {
&+label {
vertical-align: middle;
cursor: pointer;
@@ -372,7 +373,7 @@ input[type="checkbox"] {
}
}
&:checked + label:before {
&:checked+label:before {
background-color: var(--ac-color);
border-color: var(--ac-color);
color: var(--act-color);
@@ -567,7 +568,7 @@ div.tab {
display: none;
}
input[type="radio"] + label {
input[type="radio"]+label {
padding: 8px 16px;
border-bottom: 2px solid transparent;
cursor: pointer;
@@ -578,11 +579,11 @@ input[type="radio"] + label {
}
}
input[type="radio"]:checked + label {
input[type="radio"]:checked+label {
border-color: var(--fg-color);
}
input[type="radio"]:checked + label + div.tab {
input[type="radio"]:checked+label+div.tab {
display: block;
}