Skip to content

Instantly share code, notes, and snippets.

@fredbegin11
Last active November 1, 2019 21:11
Show Gist options
  • Save fredbegin11/ccb6a8eaf6c670f2ca2ff1c8b95d696d to your computer and use it in GitHub Desktop.
Save fredbegin11/ccb6a8eaf6c670f2ca2ff1c8b95d696d to your computer and use it in GitHub Desktop.

Revisions

  1. fredbegin11 revised this gist Nov 1, 2019. 1 changed file with 7 additions and 5 deletions.
    12 changes: 7 additions & 5 deletions using-mixins.scss
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,9 @@
    .header-title {
    font-size: 2rem;

    @include phone {
    font-size: 1rem;
    .header {
    &__title {
    font-size: 2rem;

    @include phone {
    font-size: 1rem;
    }
    }
    }
  2. fredbegin11 created this gist Nov 1, 2019.
    7 changes: 7 additions & 0 deletions using-mixins.scss
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,7 @@
    .header-title {
    font-size: 2rem;

    @include phone {
    font-size: 1rem;
    }
    }