Browse Source

Fix deprecated slash as division in SASS files (#16347)

Fixes #16293
closed-social-v3
Claire 2 years ago
committed by GitHub
parent
commit
be8079f637
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      app/javascript/styles/mastodon/widgets.scss

+ 4
- 2
app/javascript/styles/mastodon/widgets.scss View File

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

Loading…
Cancel
Save