promotion

Saturday, February 21, 2015

How to add styles(internal styles) in HAML file?

Simply use:
:css
  .header {
    font-size: 14px;
  }
If you want to use scss:
:scss
  .header {
    font-size: 14px;
    .logo {
        width: 100px;
        margin-right: 10px;
    }
}

No comments:

Post a Comment