From 0e4fd9871d65e94927e79f141b990169ac779ba2 Mon Sep 17 00:00:00 2001 From: f Date: Mon, 31 May 2021 14:36:26 -0300 Subject: [PATCH] sass no soporta extend dentro de una media query por razones que no termino de entender: https://github.com/sass/sass/issues/1050 --- _sass/helpers.scss | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/_sass/helpers.scss b/_sass/helpers.scss index ee0399b..ccae670 100644 --- a/_sass/helpers.scss +++ b/_sass/helpers.scss @@ -37,14 +37,14 @@ $directions: (top, right, bottom, left); /// @example html ///
.square#{$infix} { - @extend .position-relative; + position: relative !important; padding-bottom: 100%; & > * { - @extend .position-absolute; - @extend .top-0; - @extend .left-0; - @extend .h-100; + position: absolute !important; + top: 0 !important; + left: 0 !important; + height: 100% !important; } }