Skip to content

Commit

Permalink
Merge pull request #6248 from ci-wataru-kashii/fix/Deprecate_division…
Browse files Browse the repository at this point in the history
…_Outside_Of_Calc

npm run build 時のDeplicate error を修正
  • Loading branch information
dotani1111 committed Sep 11, 2024
2 parents 4a80b63 + 24671cf commit 1a0f595
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 15 deletions.
6 changes: 3 additions & 3 deletions html/template/admin/assets/css/app.css

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

2 changes: 1 addition & 1 deletion html/template/admin/assets/css/app.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion html/template/admin/assets/css/app.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion html/template/admin/assets/css/app.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion html/template/admin/assets/scss/component/_directory.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
li {
display: flex;
flex-wrap: wrap;
align-items: start;
align-items: flex-start;
margin-top: 5px;
margin-bottom: 0;
> a, span {
Expand Down
2 changes: 1 addition & 1 deletion html/template/default/assets/css/style.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion html/template/default/assets/css/style.min.css.map

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions html/template/default/assets/scss/component/_5.1.grid.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@use "sass:math";
@import "../mixins/clearfix";
@import "../mixins/media";

Expand All @@ -14,7 +15,7 @@
min-height: 1px;

@media (min-width: $desktop) {
width: percentage(($columns/ 12));
width: percentage(math.div($columns, 12));
}
@include media_desktop{
}
Expand Down Expand Up @@ -169,7 +170,7 @@ Styleguide 5.1.5
margin: 0;
@include media_desktop {
@include makeSmColumn(10);
margin-left: percentage((1 / 12));
margin-left: percentage(math.div(1, 12));
}
}
}
Expand All @@ -193,7 +194,7 @@ Styleguide 5.1.6
margin: 0;
@include media_desktop {
@include makeSmColumn(8);
margin-left: percentage((2 / 12));
margin-left: percentage(math.div(2, 12));
}
}
}
Expand All @@ -215,7 +216,7 @@ Styleguide 5.1.7
margin: 0;
@include media_desktop {
@include makeSmColumn(6);
margin-left: percentage((3 / 12));
margin-left: percentage(math.div(3, 12));
}
}
}
Expand All @@ -238,7 +239,7 @@ Styleguide 5.1.8
margin: 0;
@include media_desktop {
@include makeSmColumn(4);
margin-left: percentage((4 / 12));
margin-left: percentage(math.div(4, 12));
}
}
}
Expand Down
3 changes: 2 additions & 1 deletion html/template/default/assets/scss/component/_5.2.layout.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@use "sass:math";
@import "../mixins/projects";
@import "../mixins/clearfix";
@import "../mixins/media";
Expand All @@ -16,7 +17,7 @@

@media (min-width: $desktop) {
float: left;
width: percentage(($columns/ 12));
width: percentage(math.div($columns, 12));
}
}

Expand Down

0 comments on commit 1a0f595

Please sign in to comment.