Fix some SCSS warnings

This commit is contained in:
Yannik Rödel 2021-09-21 13:46:27 +02:00
parent 346efc1db1
commit 1f68b40ab8
3 changed files with 7 additions and 2 deletions

View file

@ -5,3 +5,7 @@
@use 'components/banner';
@include typography.root-config;
* {
box-sizing: border-box;
}

View file

@ -1,3 +1,4 @@
@use 'sass:math';
@use '../lib/colors';
@use '../lib/motion';
@use '../lib/layout';
@ -23,7 +24,7 @@
&:not(:last-child) {
&:before {
top: calc(50% - #{layout.$large-gap / 2});
top: calc(50% - #{math.div(layout.$large-gap, 2)});
}
&::after {

View file

@ -16,7 +16,7 @@
%base-form-input {
background-color: transparent;
border: #{2px / 16px * 1rem} solid colors.$blue-800;
border: 0.1rem solid colors.$blue-800;
}
%form-input {