mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 11:16:39 -05:00
Update to the latest bootstrap and adjust the breakpoints and container-max-widths to reflect
This commit is contained in:
parent
bcbfbf29f7
commit
c6cf9a44a1
4 changed files with 22 additions and 10 deletions
6
package-lock.json
generated
6
package-lock.json
generated
|
@ -1414,9 +1414,9 @@
|
|||
"integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24="
|
||||
},
|
||||
"bootstrap": {
|
||||
"version": "4.3.1",
|
||||
"resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.3.1.tgz",
|
||||
"integrity": "sha512-rXqOmH1VilAt2DyPzluTi2blhk17bO7ef+zLLPlWvG494pDxcM234pJ8wTc/6R40UWizAIIMgxjvxZg5kmsbag=="
|
||||
"version": "4.4.1",
|
||||
"resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.4.1.tgz",
|
||||
"integrity": "sha512-tbx5cHubwE6e2ZG7nqM3g/FZ5PQEDMWmMGNrCUBVRPHXTJaH7CBDdsLeu3eCh3B1tzAxTnAbtmrzvWEvT2NNEA=="
|
||||
},
|
||||
"brace-expansion": {
|
||||
"version": "1.1.11",
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
"@fortawesome/fontawesome-free": "^5.12.1",
|
||||
"autoprefixer": "^9.7.4",
|
||||
"babelify": "^10.0.0",
|
||||
"bootstrap": "4.3.1",
|
||||
"bootstrap": "4.4.1",
|
||||
"browserify": "^16.5.0",
|
||||
"easymde": "^2.9.0",
|
||||
"fancy-log": "^1.3.3",
|
||||
|
|
16
resources/sass/_var.scss
vendored
16
resources/sass/_var.scss
vendored
|
@ -9,15 +9,19 @@ $grid-breakpoints: (
|
|||
md: 768px,
|
||||
lg: 992px,
|
||||
xl: 1200px,
|
||||
xxl: 1600px
|
||||
xxl: 1600px,
|
||||
xxxl: 1950px,
|
||||
xxxxl: 2150px
|
||||
);
|
||||
|
||||
$container-max-widths: (
|
||||
sm: pxrem(540),
|
||||
md: pxrem(720),
|
||||
lg: pxrem(960),
|
||||
xl: pxrem(1140),
|
||||
xxl: pxrem(1540)
|
||||
sm: 540px,
|
||||
md: 720px,
|
||||
lg: 960px,
|
||||
xl: 1140px,
|
||||
xxl: 1540px,
|
||||
xxxl: 1733px,
|
||||
xxxxl: 1925px
|
||||
);
|
||||
|
||||
// Colours
|
||||
|
|
8
resources/sass/app.scss
vendored
8
resources/sass/app.scss
vendored
|
@ -38,6 +38,14 @@ html {
|
|||
width: 100%;
|
||||
font-size: $base-font-size;
|
||||
|
||||
@include media-breakpoint-up(xxxl) {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
@include media-breakpoint-up(xxxxl) {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
&.no-scroll {
|
||||
overflow-y: hidden;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue