Use unquote to prevent sass from erroring on env(safe-area-inset-bottom)
This commit is contained in:
parent
d27ae910c2
commit
b93d0402f8
|
@ -11,7 +11,7 @@
|
|||
text-transform: uppercase;
|
||||
text-decoration: none;
|
||||
position: fixed;
|
||||
bottom: calc(#{$navbar-height} + env(safe-area-inset-bottom));
|
||||
bottom: unquote('calc(#{$navbar-height} + env(safe-area-inset-bottom))');
|
||||
right: 0px;
|
||||
margin-right: 7px;
|
||||
margin-bottom: 7px;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#rs-mobile-nav {
|
||||
padding-bottom: calc(env(safe-area-inset-bottom) + 4px);
|
||||
padding-bottom: unquote('calc(env(safe-area-inset-bottom) + 4px)');
|
||||
|
||||
.navbar-nav {
|
||||
flex-direction: row;
|
||||
|
|
Loading…
Reference in New Issue