parent
abf4c2ab21
commit
be8079f637
|
@ -1,3 +1,5 @@
|
||||||
|
@use "sass:math";
|
||||||
|
|
||||||
.hero-widget {
|
.hero-widget {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
|
box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
|
||||||
|
@ -498,10 +500,10 @@ $fluid-breakpoint: $maximum-width + 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__item {
|
&__item {
|
||||||
width: (960px - 20px) / 3;
|
width: math.div(960px - 20px, 3);
|
||||||
|
|
||||||
@media screen and (max-width: $fluid-breakpoint) {
|
@media screen and (max-width: $fluid-breakpoint) {
|
||||||
width: (940px - 20px) / 3;
|
width: math.div(940px - 20px, 3);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 640px) {
|
@media screen and (max-width: 640px) {
|
||||||
|
|
Loading…
Reference in New Issue