Hello, I created a reset.sass file for my project when I updated the gulp, generated the following error in one of the lines of my file, but I still could not figure out what the error was.
This is the output of gulp:
[17:31:22] Finished 'sass' after 2.05 s
[17:31:23] Starting 'default'...
[17:31:23] Finished 'default' after 21 μs
[17:39:00] Starting 'sass'...
Error in plugin 'sass'
Message:
sass\molecules\_reset.sass
Error: Invalid CSS after "...se: collapse; }": expected 1 selector or at-rule, was "border-spacing: 0;"
on line 47 of sass/molecules/_reset.sass
border-collapse: collapse; } '
this is my reset file:
@import ../molecules/mixins
body
font-family: 'Open Sans', sans-serif !important
font-weight: $regular
line-height: 1
strong
font-weight: $bold
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video
margin: 0
padding: 0
border: 0
font-size: 100%
vertical-align: baseline
-webkit-font-smoothing: antialiased
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section
display: block
a
+transition(.5s)
&:hover,
&:focus
text-decoration: none !important
color: $azul
ol, ul
list-style: none
blockquote, q
quotes: none
blockquote
&:before, &:after
content: ''
content: none
q
&:before, &:after
content: ''
content: none
table
border-collapse: collapse
border-spacing: 0 '