Error in sass style sheet

0

Hello, I was writing the styles for my home page, everything was working perfectly, until an error appeared in the gulp.

Error in plugin 'sass'
Message:
   sass\organisms\_header.sass
Error: Invalid CSS after "...in: 35px 0 0; }": expected "}", was "{"
    on line 22 of sass/organisms/_header.sass
    margin: 35px 0 0; } {

I'm breaking my heart to solve this error, Can you help me?

HEADER.SASS FILE

header 

min-height: 540px

background:
    image: url('../images/slide-pag-inicial.jpg')
    position: top center
    repeat: no-repeat
    //attachment
    size: cover

.logo
    float: left
    margin: 30px 0 0
    img
        width: 118px
        height: 59px


.links
    float: right 
    margin: 35px 0 0

     nav
        +breakpoint($tablet)
                display: none
        +breakpoint($celular)
                display: none
        ul
            li
                display: inline-block
                margin: 0 20px 0 0
                a
                    color: $branco
                    text-transform: uppercase


h1,
p
    color: $branco
    text-align: center
    text-transform: uppercase
    
asked by anonymous 03.06.2017 / 19:44

2 answers

0

Review your files sass , in any of them contains this code margin: 35px 0 0; } { Remove the { key opening that is to work.

* I did not find this code in what you put in the question.

    
03.06.2017 / 21:06
0

I finally got it, the problem was solved simply by typing the line again kkkkk Thanks for the help Bruno

    
03.06.2017 / 22:31