mirror of
https://codeberg.org/angestoepselt/homepage.git
synced 2025-05-24 14:46:16 +00:00
Fix some SCSS warnings
This commit is contained in:
parent
346efc1db1
commit
1f68b40ab8
3 changed files with 7 additions and 2 deletions
|
|
@ -5,3 +5,7 @@
|
|||
@use 'components/banner';
|
||||
|
||||
@include typography.root-config;
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue