Skip to content

Commit 4218424

Browse files
committed
updated dependencies
1 parent abbaad1 commit 4218424

File tree

29 files changed

+852
-688
lines changed

29 files changed

+852
-688
lines changed

.gitignore

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,13 @@ assets/popper.js/dist/*
112112
assets/popper.js/dist/umd/*
113113
!assets/popper.js/dist/umd/popper.min.js
114114

115-
assets/twemoji/*
116-
!assets/twemoji/LICENSE
117-
!assets/twemoji/dist/
118-
assets/twemoji/dist/*
119-
!assets/twemoji/dist/twemoji.min.js
115+
assets/@twemoji/*
116+
!assets/@twemoji/api/
117+
assets/@twemoji/api/*
118+
!assets/@twemoji/api/LICENSE
119+
!assets/@twemoji/api/dist/
120+
assets/@twemoji/api/dist/*
121+
!assets/@twemoji/api/dist/twemoji.min.js
120122

121123
assets/vanilla-lazyload/*
122124
!assets/vanilla-lazyload/LICENSE

_sass/bootstrap/scss/mixins/_banner.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@mixin bsBanner($file) {
22
/*!
3-
* Bootstrap #{$file} v5.3.6 (https://getbootstrap.com/)
3+
* Bootstrap #{$file} v5.3.7 (https://getbootstrap.com/)
44
* Copyright 2011-2025 The Bootstrap Authors
55
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
66
*/

_sass/bootstrap/scss/mixins/_box-shadow.scss

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,23 @@
11
@mixin box-shadow($shadow...) {
22
@if $enable-shadows {
33
$result: ();
4+
$has-single-value: false;
5+
$single-value: null;
46

57
@each $value in $shadow {
68
@if $value != null {
7-
$result: append($result, $value, "comma");
8-
}
9-
@if $value == none and length($shadow) > 1 {
10-
@warn "The keyword 'none' must be used as a single argument.";
9+
@if $value == none or $value == initial or $value == inherit or $value == unset {
10+
$has-single-value: true;
11+
$single-value: $value;
12+
} @else {
13+
$result: append($result, $value, "comma");
14+
}
1115
}
1216
}
1317

14-
@if (length($result) > 0) {
18+
@if $has-single-value {
19+
box-shadow: $single-value;
20+
} @else if (length($result) > 0) {
1521
box-shadow: $result;
1622
}
1723
}

assets/@fortawesome/fontawesome-free/css/all.min.css

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
-206 KB
Binary file not shown.
-17.2 KB
Binary file not shown.
-66.5 KB
Binary file not shown.
-6.43 KB
Binary file not shown.
-416 KB
Binary file not shown.
-44.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)