You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

widget.scss 309B

1234567891011121314
  1. @mixin base-widget($primaryStyleName : v-widget) {
  2. .#{$primaryStyleName} {
  3. -webkit-box-sizing: border-box;
  4. -moz-box-sizing: border-box;
  5. box-sizing: border-box;
  6. text-align: left;
  7. display: inline-block;
  8. white-space: normal;
  9. vertical-align: bottom;
  10. font-size: $font-size;
  11. line-height: $line-height;
  12. }
  13. }