Skip to content

Commit

Permalink
updated to include sass bug
Browse files Browse the repository at this point in the history
  • Loading branch information
to7m committed Aug 7, 2024
1 parent 59657aa commit 3bd8592
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
7 changes: 7 additions & 0 deletions public_html/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public_html/style.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions scss/body/main/_contact.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
@use "text";


#contact {
display: grid;
grid-template-rows: auto;
Expand All @@ -10,6 +13,10 @@
grid-area: text;
}

h2 {
@include text.h2_text_sizes;
}

#contact-form {
grid-area: form;
}
1 change: 1 addition & 0 deletions scss/text/_sizes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ $_DEFAULT_FONTS: arial;


@mixin h1_text_sizes { @include _text_sizes(3rem, $font-weight: bold); }
@mixin h2_text_sizes { @include _text_sizes(1.6rem, $font-weight: bold); }
@mixin h3_text_sizes { @include _text_sizes(1.4rem, $font-weight: bold); }
@mixin header_p_text_sizes { @include _text_sizes(1.2rem); }
@mixin normal_text_sizes { @include _text_sizes(1rem); }
Expand Down

0 comments on commit 3bd8592

Please sign in to comment.