forked from jurkian/react-bank
-
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.
Change Bootstrap 3 to 4, do basic improvements
- Loading branch information
Showing
131 changed files
with
155 additions
and
9,286 deletions.
There are no files selected for viewing
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Functions | ||
@import "~bootstrap/scss/functions"; | ||
|
||
// Variables | ||
@import "custom-variables"; | ||
@import "~bootstrap/scss/variables"; | ||
|
||
// Mixins | ||
@import "custom-mixins"; | ||
@import "~bootstrap/scss/mixins"; |
File renamed without changes.
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,7 @@ | ||
$light-gray: #cbd8f3; | ||
$light-blue: #7c99d6; | ||
$dark-blue: #3c6cde; | ||
$pink: #ff2546; | ||
$light-green: #40e261; | ||
$green: #23e04b; | ||
$navy-box-shadow: rgba(131, 100, 238, 0.15); |
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 @@ | ||
@import 'variables'; | ||
@import 'scss/all-utilities'; | ||
|
||
// Placeholder and label colors | ||
|
||
|
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
File renamed without changes.
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,9 @@ | ||
@import "scss/all-utilities"; | ||
|
||
html, body { | ||
min-height: 100%; | ||
} | ||
|
||
@import "module"; | ||
@import "forms"; | ||
@import "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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/*! | ||
* Bootstrap v4.3.1 (https://getbootstrap.com/) | ||
* Copyright 2011-2019 The Bootstrap Authors | ||
* Copyright 2011-2019 Twitter, Inc. | ||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | ||
*/ | ||
|
||
@import "~bootstrap/scss/functions"; | ||
|
||
// Custom variables first | ||
@import 'custom-variables'; | ||
|
||
@import "~bootstrap/scss/variables"; | ||
@import "~bootstrap/scss/mixins"; | ||
@import "~bootstrap/scss/root"; | ||
@import "~bootstrap/scss/reboot"; | ||
@import "~bootstrap/scss/type"; | ||
@import "~bootstrap/scss/images"; | ||
@import "~bootstrap/scss/code"; | ||
@import "~bootstrap/scss/grid"; | ||
@import "~bootstrap/scss/tables"; | ||
@import "~bootstrap/scss/forms"; | ||
@import "~bootstrap/scss/buttons"; | ||
@import "~bootstrap/scss/transitions"; | ||
@import "~bootstrap/scss/dropdown"; | ||
@import "~bootstrap/scss/button-group"; | ||
@import "~bootstrap/scss/input-group"; | ||
@import "~bootstrap/scss/custom-forms"; | ||
@import "~bootstrap/scss/nav"; | ||
@import "~bootstrap/scss/navbar"; | ||
@import "~bootstrap/scss/card"; | ||
@import "~bootstrap/scss/breadcrumb"; | ||
@import "~bootstrap/scss/pagination"; | ||
@import "~bootstrap/scss/badge"; | ||
@import "~bootstrap/scss/jumbotron"; | ||
@import "~bootstrap/scss/alert"; | ||
@import "~bootstrap/scss/progress"; | ||
@import "~bootstrap/scss/media"; | ||
@import "~bootstrap/scss/list-group"; | ||
@import "~bootstrap/scss/close"; | ||
@import "~bootstrap/scss/toasts"; | ||
@import "~bootstrap/scss/modal"; | ||
@import "~bootstrap/scss/tooltip"; | ||
@import "~bootstrap/scss/popover"; | ||
@import "~bootstrap/scss/carousel"; | ||
@import "~bootstrap/scss/spinners"; | ||
@import "~bootstrap/scss/utilities"; | ||
@import "~bootstrap/scss/print"; |
Oops, something went wrong.