-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from bstaruk/develop
3.5.1
- Loading branch information
Showing
16 changed files
with
878 additions
and
1,144 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "starbase", | ||
"version": "3.5.0", | ||
"version": "3.5.1", | ||
"author": "Brian Staruk <[email protected]>", | ||
"contributors": [ | ||
{ | ||
|
@@ -42,38 +42,38 @@ | |
] | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.17.5", | ||
"@babel/core": "^7.17.9", | ||
"@babel/eslint-parser": "^7.17.0", | ||
"@babel/preset-env": "^7.16.11", | ||
"babel-loader": "^8.2.3", | ||
"babel-loader": "^8.2.4", | ||
"clean-webpack-plugin": "^4.0.0", | ||
"css-loader": "^6.6.0", | ||
"eslint": "^8.10.0", | ||
"css-loader": "^6.7.1", | ||
"eslint": "^8.13.0", | ||
"eslint-config-airbnb-base": "^15.0.0", | ||
"eslint-config-prettier": "^8.4.0", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-import-resolver-webpack": "^0.13.2", | ||
"eslint-plugin-import": "^2.25.4", | ||
"eslint-plugin-import": "^2.26.0", | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"eslint-webpack-plugin": "^3.1.1", | ||
"html-loader": "^3.1.0", | ||
"html-webpack-plugin": "^5.5.0", | ||
"husky": "^7.0.4", | ||
"lint-staged": "^12.3.4", | ||
"mini-css-extract-plugin": "^2.5.3", | ||
"lint-staged": "^12.3.7", | ||
"mini-css-extract-plugin": "^2.6.0", | ||
"path": "^0.12.7", | ||
"prettier": "^2.5.1", | ||
"sass": "^1.49.9", | ||
"prettier": "^2.6.2", | ||
"sass": "^1.50.0", | ||
"sass-loader": "^12.6.0", | ||
"style-loader": "^3.3.1", | ||
"stylelint": "^14.5.3", | ||
"stylelint": "^14.6.1", | ||
"stylelint-config-recommended": "^7.0.0", | ||
"stylelint-config-sass-guidelines": "^9.0.1", | ||
"stylelint-config-standard": "^25.0.0", | ||
"stylelint-scss": "^4.1.0", | ||
"stylelint-webpack-plugin": "^3.1.1", | ||
"webpack": "^5.69.1", | ||
"stylelint-scss": "^4.2.0", | ||
"stylelint-webpack-plugin": "^3.2.0", | ||
"webpack": "^5.72.0", | ||
"webpack-cli": "^4.9.2", | ||
"webpack-dev-server": "^4.7.0", | ||
"webpack-dev-server": "^4.8.1", | ||
"webpack-merge": "^5.8.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
/* Ordered Imports */ | ||
@import 'styles/utils/variables'; | ||
@import 'styles/utils/mixins'; | ||
@import 'styles/base/fonts'; | ||
@import 'styles/base/reset'; | ||
@import 'styles/base/root'; | ||
@use 'styles/base/fonts'; | ||
@use 'styles/base/reset'; | ||
@use 'styles/base/root'; | ||
|
||
/* Unordered Imports */ | ||
@import 'styles/layouts/footer'; | ||
@import 'styles/layouts/header'; | ||
@import 'styles/layouts/main'; | ||
@use 'styles/layouts/footer'; | ||
@use 'styles/layouts/header'; | ||
@use 'styles/layouts/main'; |
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
@use 'styles/utils' as *; | ||
|
||
.code, | ||
.pre { | ||
background-color: $color-selection; | ||
|
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,20 +1,22 @@ | ||
@use 'styles/utils' as *; | ||
|
||
.heading { | ||
font-family: $font-serif; | ||
font-weight: normal; | ||
|
||
&--h1 { | ||
font-size: 32px; | ||
font-size: 1.875em; | ||
} | ||
|
||
&--h2 { | ||
font-size: 28px; | ||
font-size: 1.75em; | ||
} | ||
|
||
&--h3 { | ||
font-size: 24px; | ||
font-size: 1.5em; | ||
} | ||
|
||
&--h4 { | ||
font-size: 20px; | ||
font-size: 1.25em; | ||
} | ||
} |
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,5 @@ | ||
@use 'styles/utils' as *; | ||
|
||
.link { | ||
text-decoration: underline; | ||
|
||
|
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,5 @@ | ||
@use 'styles/utils' as *; | ||
|
||
.list { | ||
&--ordered { | ||
list-style-type: decimal; | ||
|
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,5 @@ | ||
@use 'styles/utils' as *; | ||
|
||
.footer { | ||
border-top: 2px solid $color-comment; | ||
color: $color-comment; | ||
|
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,32 +1,44 @@ | ||
@import 'styles/components/link'; | ||
@import 'styles/components/list'; | ||
@use 'styles/utils' as *; | ||
@use 'styles/components/link'; | ||
@use 'styles/components/list'; | ||
|
||
.header { | ||
align-items: center; | ||
display: flex; | ||
justify-content: flex-start; | ||
@include respond-to('small') { | ||
align-items: center; | ||
display: flex; | ||
justify-content: space-between; | ||
} | ||
|
||
&__title { | ||
align-items: center; | ||
display: flex; | ||
|
||
&__image { | ||
flex-shrink: 0; | ||
height: 32px; | ||
margin-right: 12px; | ||
&-image { | ||
flex-shrink: 0; | ||
height: 32px; | ||
margin-right: 12px; | ||
|
||
@include respond-to('medium') { | ||
height: 40px; | ||
@include respond-to('medium') { | ||
height: 40px; | ||
} | ||
} | ||
} | ||
|
||
&__title { | ||
flex-grow: 1; | ||
font-family: $font-serif; | ||
font-size: 36px; | ||
font-weight: normal; | ||
letter-spacing: normal; | ||
margin: 0; | ||
&-label { | ||
font-family: $font-serif; | ||
font-size: 2em; | ||
font-weight: normal; | ||
letter-spacing: normal; | ||
margin: 0; | ||
} | ||
} | ||
|
||
&__link { | ||
flex-shrink: 0; | ||
margin-left: 16px; | ||
display: block; | ||
margin-top: 8px; | ||
|
||
@include respond-to('small') { | ||
flex-shrink: 0; | ||
margin: 0 0 0 16px; | ||
} | ||
} | ||
} |
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,2 @@ | ||
@forward './mixins'; | ||
@forward './variables'; |
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,5 @@ | ||
@use 'variables' as *; | ||
|
||
/** | ||
Mixin to manage responsive breakpoints | ||
@author Kitty Giraudel | ||
|
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