dh_demo

DreamHanks demo project
git clone git://git.lair.cx/dh_demo
Log | Files | Refs | README

Title.module.scss (716B)


      1 @use 'core/typography';
      2 
      3 .is-display {
      4   &.is-large {
      5     @include typography.apply('display-large')
      6   }
      7 
      8   &.is-medium {
      9     @include typography.apply('display-medium')
     10   }
     11 
     12   &.is-small {
     13     @include typography.apply('display-small')
     14   }
     15 }
     16 
     17 .is-headline {
     18   &.is-large {
     19     @include typography.apply('headline-large')
     20   }
     21 
     22   &.is-medium {
     23     @include typography.apply('headline-medium')
     24   }
     25 
     26   &.is-small {
     27     @include typography.apply('headline-small')
     28   }
     29 }
     30 
     31 .is-title {
     32   &.is-large {
     33     @include typography.apply('title-large')
     34   }
     35 
     36   &.is-medium {
     37     @include typography.apply('title-medium')
     38   }
     39 
     40   &.is-small {
     41     @include typography.apply('title-small')
     42   }
     43 }
     44 
     45 .has-no-margin {
     46   margin-bottom: 0
     47 }