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

Loading…
Cancel
Save