1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-26 14:54:27 +02:00

Convert v4-dev calc() left overs to add/subtract functions

This commit is contained in:
Martijn Cuppens
2019-11-01 10:32:21 +01:00
committed by XhmikosR
parent 90d4b72e06
commit b0b8d3c982
4 changed files with 14 additions and 14 deletions

View File

@@ -8,7 +8,7 @@
@supports (position: sticky) {
position: sticky;
top: 4rem;
height: calc(100vh - 4rem);
height: subtract(100vh, 4rem);
overflow-y: auto;
}
order: 2;
@@ -55,7 +55,7 @@
position: sticky;
top: 4rem;
z-index: 1000;
height: calc(100vh - 4rem);
height: subtract(100vh, 4rem);
}
border-right: 1px solid rgba(0, 0, 0, .1);
}
@@ -73,7 +73,7 @@
@include media-breakpoint-up(md) {
@supports (position: sticky) {
max-height: calc(100vh - 9rem);
max-height: subtract(100vh, 9rem);
overflow-y: auto;
}
}