1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-08-07 23:03:00 +03:00

Upgraded php and npm deps

- Sass upgrade had some breaking changes where division was used
hence updated for newer sass version support.
This commit is contained in:
Dan Brown
2021-05-29 13:08:28 +01:00
parent ed6ec341df
commit d62cdd58d3
8 changed files with 261 additions and 256 deletions

View File

@@ -190,7 +190,7 @@ body.flexbox-support #entity-selector-wrap .popup-body .form-group {
float: left;
margin: 0;
cursor: pointer;
width: (100%/6);
width: math.div(100%, 6);
height: auto;
@include lightDark(border-color, #ddd, #000);
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
@@ -219,7 +219,7 @@ body.flexbox-support #entity-selector-wrap .popup-body .form-group {
}
}
@include smaller-than($xl) {
width: (100%/4);
width: math.div(100%, 4);
}
@include smaller-than($m) {
.image-meta {