1
0
mirror of https://github.com/locomotivemtl/locomotive-boilerplate.git synced 2026-01-15 00:55:08 +08:00

Replace deprecated division in '_widths.scss'

This commit is contained in:
Chauncey McAskill
2024-01-29 11:37:39 -05:00
parent 4ae90a5821
commit 5b6bca6ce3

View File

@@ -23,6 +23,6 @@ $widths-fractions: 1 2 3 4 5 !default;
.u-1\/2\@from-small {
@media (min-width: $from-small) {
width: span(1/2);
width: 50%;
}
}