반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- vue draggable 차트 안나옴
- 함수형 프로그래밍
- vuedraggable
- git
- vue3 drag and drop
- Learning React
- 다자 이해관계자 모델
- d3 지도
- 화살표 함수 중괄호
- 인터넷 거버넌스
- usefetch
- d3 지도 타입스크립트
- nuxt universal rendering
- last-modified
- cloud firestore id auto increment
- reflow
- commonjs와 ecmascript modules(esm)
- ecmascript modules(esm)
- vue composable 함수
- component is already mounted please use $fetch instead.
- repaint
- d3 지도 확대/축소
- 참조형 default
- vue 컴포저블 함수
- 화살표 함수 {}
- ToDo
- firebase id 자동
- $fetch
- d3 지도 툴팁
- 참조형 props의 default
Archives
- Today
- Total
빵 입니다.
Dart Sass 의 calc() 내에서 / 삭제될 예정 본문
반응형
DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
Sass 내에서 일부는 /를 나누기 연산으로 처리하고, 다른 일부는 구분 기호로 처리한다.
사용자가 /의 의미를 구분하기 어렵고, 작업하기 어렵게 만든다.
- 나누기 대신 소수 곱하기
calc($val / 2) 대신 calc($val * 0.5)를 사용한다.
=> 소수의 값이 무한소수일 경우 대응이 어렵다. - Sass 내장 함수 math.div() 사용하기
@use "sass:math"; 를 선언해서 내장 함수를 가져온다.
* SassError: @use rules must be written before any other rules.
=> @use 는 다른 소스들보다 먼저 선언되어야 한다. 소스 중간에 추가하면 안된다.
math.div(value, divider);
@use "sass:math";
math.div(value, divider);
math.div(100, 5); /* 20 */
📌 꼭 읽어주세요!
https://sass-lang.com/documentation/breaking-changes/slash-div
Sass: Breaking Change: Slash as Division
Sass currently treats / as a division operation in some contexts and a separator in others. This makes it difficult for Sass users to tell what any given / will mean, and makes it hard to work with new CSS features that use / as a separator. Compatibility:
sass-lang.com
반응형
'스타디 > CSS, SCSS' 카테고리의 다른 글
[2/2] @import 대신 @use 사용하자. sass-migrator를 사용해보자. (0) | 2022.09.14 |
---|---|
CSS Variable Syntax (0) | 2022.08.30 |
font-size em vs rem (0) | 2022.08.22 |
CSS 단위 (0) | 2022.08.22 |
PostCSS (0) | 2022.08.12 |