Skip to content

Commit

Permalink
enhancement: update bootstrap reboot to v4.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marcop135 committed Feb 5, 2021
1 parent 2766a7c commit 758d86c
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 26 deletions.
20 changes: 10 additions & 10 deletions dist/assets/css/main.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*!
* Bootstrap Reboot v4.5.0 (https://getbootstrap.com/)
* Copyright 2011-2020 The Bootstrap Authors
* Copyright 2011-2020 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* Bootstrap Reboot v4.6.0 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors
* Copyright 2011-2021 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
*/
*,
Expand All @@ -24,7 +24,7 @@ article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {

body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
Expand Down Expand Up @@ -133,12 +133,12 @@ a:hover {
text-decoration: underline;
}

a:not([href]) {
a:not([href]):not([class]) {
color: inherit;
text-decoration: none;
}

a:not([href]):hover {
a:not([href]):not([class]):hover {
color: inherit;
text-decoration: none;
}
Expand Down Expand Up @@ -186,6 +186,7 @@ caption {

th {
text-align: inherit;
text-align: -webkit-match-parent;
}

label {
Expand All @@ -197,9 +198,8 @@ button {
border-radius: 0;
}

button:focus {
outline: 1px dotted;
outline: 5px auto -webkit-focus-ring-color;
button:focus:not(:focus-visible) {
outline: 0;
}

input,
Expand Down
10 changes: 5 additions & 5 deletions dist/assets/css/main.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions src/assets/scss/base/_bootstrap-reboot.scss
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// https://github.com/twbs/bootstrap/blob/v4.5.0/dist/css/bootstrap-reboot.css
// https://github.com/twbs/bootstrap/blob/v4.6.0/dist/css/bootstrap-reboot.css

/*!
* Bootstrap Reboot v4.5.0 (https://getbootstrap.com/)
* Copyright 2011-2020 The Bootstrap Authors
* Copyright 2011-2020 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* Bootstrap Reboot v4.6.0 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors
* Copyright 2011-2021 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
*/
*,
Expand All @@ -26,7 +26,7 @@

body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
Expand Down Expand Up @@ -135,12 +135,12 @@
text-decoration: underline;
}

a:not([href]) {
a:not([href]):not([class]) {
color: inherit;
text-decoration: none;
}

a:not([href]):hover {
a:not([href]):not([class]):hover {
color: inherit;
text-decoration: none;
}
Expand Down Expand Up @@ -188,6 +188,7 @@

th {
text-align: inherit;
text-align: -webkit-match-parent;
}

label {
Expand All @@ -199,9 +200,8 @@
border-radius: 0;
}

button:focus {
outline: 1px dotted;
outline: 5px auto -webkit-focus-ring-color;
button:focus:not(:focus-visible) {
outline: 0;
}

input,
Expand Down

0 comments on commit 758d86c

Please sign in to comment.