일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 검색
- egov spring ajax 사용 예시
- formgroup
- mysql if
- 스크롤 이벤트
- 앵귤러 애니메이션
- Router
- 앵귤러 모달
- 셀렉트박스 커스텀
- Oracle LISTAGG 사용 예시
- angular button
- flex-1
- 모달
- prisma
- angular animation
- route
- Ionic modal
- 호버
- 옵저버블
- 아이오닉 스크롤 이벤트
- TAILWIND
- ApexChart
- Angular Router
- angular route
- modal
- ajax 사용 예시
- scroll
- summary
- angular modal
- 스크롤 이벤트 감지
- Today
- Total
목록TAILWIND (5)
깜놀하는 해므찌로

npm install --force @nextcss/color-tools 1. 설치 /** @type {import('tailwindcss').Config} */ module.exports = { content: ["./src/**/*.{html,ts}"], theme: { extend: { colors: { primary: generateColors("#001650"), }, }, }, plugins: [], }; function generateColors(color) { const { toneMap } = require("@nextcss/color-tools"); return { DEFAULT: color, ...toneMap(color), }; } 2. tailwind.config.js 내부에 컬러..
npx nx generate @nrwl/angular:setup-tailwind 프로젝트명
1. 이미지 경로 기본 슬래시 / 사용2. screen 속성은 vh, vw 수치를 결정한다. 현재 스크린의 max-w : vw="100" 배경이미지 콘텐츠 3. z-index 를 활용하여 배경이미지와 콘텐츠를 따로 관리하기도 합니다. (div) 4. img 태그 하나로도 대체할 수 있습니다.5. object-cover : 해당 속성이 없으면 이미지가 늘어나거나 깨지지 않고 깔끔하게 채워집니다.6. pointer-events-none : 마우스 드래그를 막습니다. 이미지 태그에 웬만하면 넣는 것을 추천드려요 https://tailwindcss.com/docs/object-fit Object Fit - Tailwind CSSUtilities for controlling how..

class="focus-within:hover:border-primary focus-within:border-primary"
/** @type {import('tailwindcss').Config} */ module.exports = { content: ["./src/**/*.{html,ts,js,scss}"], theme: { extend: { colors: { primary: generateColors("#001650"), menuHover: generateColors("#1A2D62"), primarylighter: generateColors("#334573"), danger: generateColors("#dc2626"), user: generateColors("#009E23"), branch: generateColors("#9E007A"), menu: generateColors("#9E7200"), success: g..