Fix warnings

This commit is contained in:
Rafael 2022-03-23 17:00:57 -03:00 committed by Thomas Zarebczan
parent ec6cb7380b
commit 09557c8ce2
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@
// IE8 // IE8
background-color: #646464; background-color: #646464;
background-color: rgba(255, 255, 255, 0.4); background-color: rgba(255, 255, 255, 0.4);
border-radius: round($nudge / 2); border-radius: calc(#{$nudge} / 2);
padding: $nudge * 2; padding: $nudge * 2;
width: 33%; width: 33%;
} }

View file

@ -6,7 +6,7 @@ $COLLAPSED_HEIGHT: 120px;
} }
.expandable--closed { .expandable--closed {
max-height: $COLLAPSED_HEIGHT * 3 / 4; max-height: calc(#{$COLLAPSED_HEIGHT} * 3 / 4);
overflow-y: hidden; overflow-y: hidden;
position: relative; position: relative;
-webkit-mask-image: -webkit-gradient(linear, left 30%, left bottom, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0))); -webkit-mask-image: -webkit-gradient(linear, left 30%, left bottom, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0)));