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';
|
@use 'components/banner';
|
||||||
|
|
||||||
@include typography.root-config;
|
@include typography.root-config;
|
||||||
|
|
||||||
|
* {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
@use 'sass:math';
|
||||||
@use '../lib/colors';
|
@use '../lib/colors';
|
||||||
@use '../lib/motion';
|
@use '../lib/motion';
|
||||||
@use '../lib/layout';
|
@use '../lib/layout';
|
||||||
|
|
@ -23,7 +24,7 @@
|
||||||
|
|
||||||
&:not(:last-child) {
|
&:not(:last-child) {
|
||||||
&:before {
|
&:before {
|
||||||
top: calc(50% - #{layout.$large-gap / 2});
|
top: calc(50% - #{math.div(layout.$large-gap, 2)});
|
||||||
}
|
}
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
%base-form-input {
|
%base-form-input {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
border: #{2px / 16px * 1rem} solid colors.$blue-800;
|
border: 0.1rem solid colors.$blue-800;
|
||||||
}
|
}
|
||||||
|
|
||||||
%form-input {
|
%form-input {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue