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 | 31 |
Tags
- .bash_profile적용안됨
- 유용꿀gittip
- git 팁
- @at-root여러번
- .bash_profile실행
- 카드 셔플
- 코알못의도전 #알고리즘기초 #공부하는블로그
- 해시 #map&set
- ngrok
- @at-root
- zsh설치 후
- multiple
- 업무시유용한git
- zsh설치
- leetCode #코알못의도전기 #코드알고리즘기초 #1일1알고리즘 #알고리즘공부 #코드챌린지
Archives
- Today
- Total
목록@at-root (1)
흑염소처럼
scss에서 @ at- root 를 사용하면서 불편했던 점은 동일한 스타일을 쓰는데 @ at-root를 중복나열하여 사용할 수 없어 아래 코드와 같이 사용하고 싶으나 사용할 수 없습니다. 그럴 때 아래와 같이 사용할 수 있습니다. //아래와 같이 사용 못함 .test_wrap{ @at-root .join_coupon &,@at-root .identical_product &{ top: 50%; transform: rotate(45deg) translateY(-50%); } } //scss 속성을 사용하여 처리 가능 .test_wrap{ @at-root #{selector-nest(".test1,.test2","#{&}")}{ top: 50%; transform: rotate(45deg) translateY..
scss
2021. 1. 13. 11:35