-
Notifications
You must be signed in to change notification settings - Fork 90
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 #56 from christophrumpel/bugfix/updateBootstrap
Bugfix/update bootstrap
- Loading branch information
Showing
8 changed files
with
60,733 additions
and
69 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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -20,4 +20,4 @@ Vue.component('botman-tinker', TinkerComponent); | |
|
||
const app = new Vue({ | ||
el: '#app' | ||
}); | ||
}); |
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,38 +1,7 @@ | ||
|
||
// Body | ||
$body-bg: #f5f8fa; | ||
|
||
// Borders | ||
$laravel-border-color: darken($body-bg, 10%); | ||
$list-group-border: $laravel-border-color; | ||
$navbar-default-border: $laravel-border-color; | ||
$panel-default-border: $laravel-border-color; | ||
$panel-inner-border: $laravel-border-color; | ||
|
||
// Brands | ||
$brand-primary: #3097D1; | ||
$brand-info: #8eb4cb; | ||
$brand-success: #2ab27b; | ||
$brand-warning: #cbb956; | ||
$brand-danger: #bf5329; | ||
|
||
// Typography | ||
$icon-font-path: "~bootstrap-sass/assets/fonts/bootstrap/"; | ||
$font-family-sans-serif: "Raleway", sans-serif; | ||
$font-size-base: 14px; | ||
$line-height-base: 1.6; | ||
$text-color: #636b6f; | ||
|
||
// Navbar | ||
$navbar-default-bg: #fff; | ||
|
||
// Buttons | ||
$btn-default-color: $text-color; | ||
|
||
// Inputs | ||
$input-border: lighten($text-color, 40%); | ||
$input-border-focus: lighten($brand-primary, 25%); | ||
$input-color-placeholder: lighten($text-color, 30%); | ||
|
||
// Panels | ||
$panel-default-heading-bg: #fff; | ||
$font-size-base: 0.9rem; | ||
$line-height-base: 1.6; |
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,9 +1,13 @@ | ||
|
||
// Fonts | ||
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600"); | ||
|
||
// Variables | ||
@import "variables"; | ||
|
||
// Bootstrap | ||
@import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap"; | ||
@import '~bootstrap/scss/bootstrap'; | ||
|
||
.navbar-laravel { | ||
background-color: #fff; | ||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04); | ||
} |