-
Notifications
You must be signed in to change notification settings - Fork 164
updated node version and other packages #1341
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
1dde004
05fe09e
6001d3b
e0ff2f3
cf7766b
a08bd6e
8d534c1
ec131e1
702cc06
5f3de26
efe7c1a
12e1054
7dad68b
a29d2c2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
22 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"arrowParens": "avoid", | ||
"bracketSpacing": true, | ||
"endOfLine": "lf", | ||
"printWidth": 120, | ||
"quoteProps": "as-needed", | ||
"proseWrap": "preserve", | ||
"semi": false, | ||
"singleQuote": true, | ||
"tabWidth": 2, | ||
"trailingComma": "es5", | ||
"useTabs": false | ||
} |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -171,7 +171,7 @@ | |
line-height: 1; | ||
color: $cf-light; | ||
|
||
@include hover { | ||
&:hover { | ||
color: $bd-link-hover-color; | ||
} | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
@mixin make-container($padding-x: $container-padding-x) { | ||
width: 100%; | ||
padding-right: $padding-x; | ||
padding-left: $padding-x; | ||
margin-right: auto; | ||
margin-left: auto; | ||
} | ||
|
||
@mixin make-container-max-widths($max-widths: $container-max-widths, $breakpoints: $grid-breakpoints) { | ||
@each $breakpoint, $container-max-width in $max-widths { | ||
@include media-breakpoint-up($breakpoint, $breakpoints) { | ||
max-width: $container-max-width; | ||
} | ||
} | ||
} | ||
|
||
.custom-container { | ||
@include make-container(); | ||
@include make-container-max-widths(); | ||
} | ||
olegt-codefresh marked this conversation as resolved.
Show resolved
Hide resolved
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,22 +3,12 @@ | |
* Copyright 2018 Codefresh, Inc. | ||
*/ | ||
|
||
// Load Bootstrap variables and mixins | ||
@use "bootstrap/scss/bootstrap" as *; | ||
|
||
//@import "../../scss/functions"; | ||
@import "../../node_modules/bootstrap/scss/functions"; | ||
|
||
//@import "../../scss/variables"; | ||
@import "../../node_modules/bootstrap/scss/variables"; | ||
|
||
//@import "../../scss/mixins"; | ||
@import "../../node_modules/bootstrap/scss/mixins"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @import is deprecated |
||
|
||
// Load docs components | ||
@import "variables"; | ||
|
||
@import "../../node_modules/bootstrap/scss/bootstrap-grid"; | ||
|
||
@import "root"; | ||
@import "reboot"; | ||
@import "code"; | ||
|
@@ -43,6 +33,7 @@ | |
@import "modal"; | ||
@import "select"; | ||
@import "divider"; | ||
@import "custom-overrides"; | ||
|
||
// Load docs dependencies | ||
@import "syntax"; | ||
|
Uh oh!
There was an error while loading. Please reload this page.