-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
564 additions
and
270 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
.at-heading { | ||
@extend %heading; | ||
|
||
@each $size, $value in $font-sizes { | ||
@each $size, $map in $headings { | ||
&.is-#{$size} { | ||
@include font-size($value); | ||
@include font-size(map-get($map, font-size)); | ||
font-weight: map-get($map, font-weight); | ||
line-height: map-get($map, line-height); | ||
letter-spacing: map-get($map, letter-spacing); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.at-lead { | ||
@include font-size($lead-font-size); | ||
line-height: $lead-line-height; | ||
font-weight: $lead-font-weight; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.at-small { | ||
@include font-size($small-font-size); | ||
line-height: $small-line-height; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
@mixin undo-sr-only { | ||
position: static; | ||
width: auto; | ||
height: auto; | ||
padding: 0; | ||
overflow: visible; | ||
clip: auto; | ||
white-space: normal; | ||
border: 0; | ||
// Check: @bootstrap/mixins/visually-hidden | ||
@mixin undo-visually-hidden { | ||
width: auto !important; | ||
height: auto !important; | ||
margin: auto !important; | ||
overflow: auto !important; | ||
clip: auto !important; | ||
white-space: normal !important; | ||
|
||
&:not(caption) { | ||
position: static !important; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
src/scss/mixins/_module.scss → src/scss/mixins/_wall-brick.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@mixin module { | ||
@mixin wall-brick { | ||
&.is-xl { | ||
min-height: 20rem; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
@import "bootstrap/scss/pagination"; | ||
|
||
.ml-pagination { | ||
|
||
@extend .pagination; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
.tpl-centered-body { | ||
--max-width: 500px; | ||
--margin-inline: 2rem; | ||
--margin-block: 2rem; | ||
|
||
.centered-body-wrapper { | ||
box-sizing: border-box; | ||
min-height: calc(100lvh - var(--margin-block) * 2); | ||
margin-block: var(--margin-block); | ||
margin-inline: var(--margin-inline); | ||
display: grid; | ||
grid-template-columns: minmax(0, var(--max-width)); | ||
justify-content: center; | ||
align-content: center; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
.tpl-grid { | ||
--column-gap: 1em; | ||
--row-gap: 1em; | ||
--item-min-width: 100px; | ||
--item-max-width: 1fr; | ||
|
||
.grid-wrapper { | ||
display: grid; | ||
grid-template-columns: repeat(auto-fill, minmax(min(100%, var(--item-min-width)), var(--item-max-width))); | ||
column-gap: var(--column-gap); | ||
row-gap: var(--row-gap); | ||
|
||
&:where(ul, ol) { | ||
list-style-type: ""; /* Remove list style without removing the role=list in Safari */ | ||
padding-left: 0; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Define common padding and border radius sizes and more. | ||
|
||
$border-width: 1px !default; | ||
$border-widths: ( | ||
1: 1px, | ||
2: 2px, | ||
3: 3px, | ||
4: 4px, | ||
5: 5px | ||
) !default; | ||
$border-style: solid !default; | ||
$border-color: $gray-400 !default; | ||
|
||
$border-radius: 0 !default; | ||
|
||
$breadcrumb-separator: '/' !default; | ||
|
||
$aspect-ratios: ( | ||
"1x1": 100%, | ||
"4x3": calc(3 / 4 * 100%), | ||
"16x9": calc(9 / 16 * 100%), | ||
"21x9": calc(9 / 21 * 100%) | ||
) !default; | ||
|
||
$wall-gap: $grid-gutter-width !default; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.