1
0
mirror of https://github.com/locomotivemtl/locomotive-boilerplate.git synced 2026-01-15 00:55:08 +08:00

Merge branch 'master' into feature/css-variables

This commit is contained in:
Deven Caron
2023-02-09 09:01:24 -05:00
10 changed files with 1643 additions and 1559 deletions

View File

@@ -539,7 +539,7 @@ button:focus, button:hover,
@font-face {
font-display: swap;
font-family: Source Sans;
font-family: "Source Sans";
src: url("../fonts/SourceSans3-Bold.woff2") format("woff2"), url("../fonts/SourceSans3-Bold.woff") format("woff");
font-weight: 700;
font-style: normal;
@@ -547,7 +547,7 @@ button:focus, button:hover,
@font-face {
font-display: swap;
font-family: Source Sans;
font-family: "Source Sans";
src: url("../fonts/SourceSans3-BoldIt.woff2") format("woff2"), url("../fonts/SourceSans3-BoldIt.woff") format("woff");
font-weight: 700;
font-style: italic;
@@ -555,7 +555,7 @@ button:focus, button:hover,
@font-face {
font-display: swap;
font-family: Source Sans;
font-family: "Source Sans";
src: url("../fonts/SourceSans3-Regular.woff2") format("woff2"), url("../fonts/SourceSans3-Regular.woff") format("woff");
font-weight: 400;
font-style: normal;
@@ -563,7 +563,7 @@ button:focus, button:hover,
@font-face {
font-display: swap;
font-family: Source Sans;
font-family: "Source Sans";
src: url("../fonts/SourceSans3-RegularIt.woff2") format("woff2"), url("../fonts/SourceSans3-RegularIt.woff") format("woff");
font-weight: 400;
font-style: italic;
@@ -572,9 +572,8 @@ button:focus, button:hover,
html {
min-height: 100%;
line-height: 1.5;
font-family: Source, Sans, -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
font-family: "Source Sans", -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
color: #000000;
line-height: 1.5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

File diff suppressed because one or more lines are too long