Version 4 with Laravel Mix

This commit is contained in:
Dan Coulthard 2023-08-03 12:57:13 +01:00
parent 0cafd60448
commit f0198f659b
32 changed files with 13032 additions and 352 deletions

View file

@ -2,7 +2,9 @@
* Media query to respond to a minimum size (mobile first)
*/
@mixin resp-min($size) {
@use "sass:math";
@mixin resp-min($size) {
@media screen and (min-width: $size) {
@content;
}
@ -26,7 +28,7 @@
@mixin font-size($px) {
font-size: $px + px;
font-size: #{$px / 16}rem;
font-size: #{math.div($px, 16)}rem;
}