Fixed scss lint errorsç
parent
f38635fd1f
commit
d5f9fe4cc8
|
@ -14,7 +14,7 @@
|
|||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
justify-content: flex-start;
|
||||
padding: .5rem 0 .5rem 0;
|
||||
padding: .5rem 0;
|
||||
text-align: left;
|
||||
width: 100%;
|
||||
@for $i from 1 through 8 {
|
||||
|
|
|
@ -41,3 +41,9 @@ ol { list-style: decimal; }
|
|||
.draggable {
|
||||
cursor: move;
|
||||
}
|
||||
|
||||
// Background
|
||||
%triangled-bg {
|
||||
background: url('/images/bg.png') no-repeat center center;
|
||||
background-size: cover;
|
||||
}
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
|
||||
|
||||
.login-main {
|
||||
@include table-flex(center, center, flex, row, wrap, center);
|
||||
background: url('/images/bg.png') no-repeat center center;
|
||||
background-size: cover;
|
||||
@extend %triangled-bg;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
position: fixed;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
.wysiwyg {
|
||||
margin-bottom: 2rem;
|
||||
textarea {
|
||||
background: white;
|
||||
background: $white;
|
||||
max-height: none;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,10 +3,12 @@
|
|||
}
|
||||
.action-buttons {
|
||||
position: absolute;
|
||||
top: 2rem;
|
||||
right: 2rem;
|
||||
.delete-wiki, .edit-wiki, .save-wiki {
|
||||
float:right;
|
||||
top: 2rem;
|
||||
.delete-wiki,
|
||||
.edit-wiki,
|
||||
.save-wiki {
|
||||
float: right;
|
||||
margin-left: 10px;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -39,17 +39,15 @@
|
|||
}
|
||||
.icon-arrow-up {
|
||||
@include transform(rotate(180deg));
|
||||
@include transition (all .2s linear);
|
||||
vertical-align: baseline;
|
||||
&:hover,
|
||||
&.active {
|
||||
@include transform(rotate(0));
|
||||
@include transition (all .2s ease-in);
|
||||
@include transition (all .2s linear);
|
||||
}
|
||||
&.active {
|
||||
&:hover {
|
||||
@include transition (all .2s ease-in);
|
||||
@include transform(rotate(180deg));
|
||||
}
|
||||
@include transition(color .2s linear);
|
||||
color: $fresh-taiga;
|
||||
}
|
||||
}
|
||||
.icon-edit {
|
||||
|
@ -176,16 +174,15 @@
|
|||
.sprint-name {
|
||||
.icon-arrow-up {
|
||||
@include transform(rotate(180deg));
|
||||
&:hover,
|
||||
@include transition (all .2s linear);
|
||||
vertical-align: baseline;
|
||||
&.active {
|
||||
@include transform(rotate(0));
|
||||
@include transition (all .2s ease-in);
|
||||
@include transition (all .2s linear);
|
||||
}
|
||||
&.active {
|
||||
&:hover {
|
||||
@include transform(rotate(180deg));
|
||||
@include transition (all .2s ease-in);
|
||||
}
|
||||
@include transition(color .2s linear);
|
||||
color: $fresh-taiga;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -199,16 +196,15 @@
|
|||
.sprint-name {
|
||||
.icon-arrow-up {
|
||||
@include transform(rotate(180deg));
|
||||
&:hover,
|
||||
@include transition (all .2s linear);
|
||||
vertical-align: baseline;
|
||||
&.active {
|
||||
@include transform(rotate(0));
|
||||
@include transition (all .2s ease-in);
|
||||
@include transition (all .2s linear);
|
||||
}
|
||||
&.active {
|
||||
&:hover {
|
||||
@include transform(rotate(180deg));
|
||||
@include transition (all .2s ease-in);
|
||||
}
|
||||
@include transition(color .2s linear);
|
||||
color: $fresh-taiga;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
.create-project {
|
||||
@include table-flex(center, center, flex, row, wrap, center);
|
||||
background: url('/images/bg.png') no-repeat center center;
|
||||
background-size: cover;
|
||||
@extend %triangled-bg;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
position: fixed;
|
||||
|
@ -15,8 +14,8 @@
|
|||
@include table-flex-child(0, 400px, 0, 400px);
|
||||
}
|
||||
h1 {
|
||||
text-align: center;
|
||||
color: $white;
|
||||
text-align: center;
|
||||
}
|
||||
.logo,
|
||||
.tagline {
|
||||
|
|
Loading…
Reference in New Issue