Browse Source

fix(unified-close-icons): Removed duplicate declaration, fix for stylelint

renovate/lint-staged-8.x
pajasevi 7 years ago
parent
commit
95872d8ea3
  1. 29
      app/components/ChannelForm/ChannelForm.scss

29
app/components/ChannelForm/ChannelForm.scss

@ -1,7 +1,6 @@
@import '../../variables.scss';
.modal {
position: relative;
width: 40%;
margin: 50px auto;
position: absolute;
@ -38,21 +37,21 @@
}
.header {
padding: 20px;
background: $lightgrey;
text-align: center;
font-family: 'Jigsaw Light';
text-transform: uppercase;
position: relative;
z-index: -2;
padding: 20px;
background: $lightgrey;
text-align: center;
font-family: 'Jigsaw Light';
text-transform: uppercase;
position: relative;
z-index: -2;
}
.progress {
transition: all 0.2s ease;
background: $main;
position: absolute;
height: 100%;
top: 0;
left: 0;
z-index: -1;
transition: all 0.2s ease;
background: $main;
position: absolute;
height: 100%;
top: 0;
left: 0;
z-index: -1;
}

Loading…
Cancel
Save