Skip to content

Commit

Permalink
docs(readme): ✏️ change highlight to template literals (#23)
Browse files Browse the repository at this point in the history
closes #22
  • Loading branch information
navin-moorthy committed Jul 20, 2020
1 parent bac3b45 commit f44f3d7
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,18 +74,18 @@ You can enable tab completion (recommended) by opening

#### Pseudo Styles

| Snippet | Purpose |
| ----------- | --------------- |
| `hover` | :hover |
| `focus` | :focus |
| `active` | :active |
| `disabled` | :disabled |
| `visited` | :visited |
| `first` | :first-child |
| `last` | :last-child |
| `even` | :nth-child(2n) |
| `odd` | :nth-child(odd) |
| `nth-child` | :nth-child() |
| Snippet | Purpose |
| ----------- | ------------------ |
| `hover` | :hover |
| `focus` | :focus |
| `active` | :active |
| `disabled` | :disabled |
| `visited` | :visited |
| `first` | :first-child |
| `last` | :last-child |
| `even` | :nth-child(2n) |
| `odd` | :nth-child(odd) |
| `nth-child` | :nth-child(`rule`) |

#### [Breakpoints](https://tailwindcss.com/docs/breakpoints)

Expand Down Expand Up @@ -267,15 +267,15 @@ You can enable tab completion (recommended) by opening
| Snippet | Purpose |
| --------------------------- | ------------------------------------------------------------- |
| `super-centered` | place-items: center; |
| `deconstructed-pancake` | flex: 0 1 <baseWidth>}; |
| `sidebar-says` | grid-template-columns: minmax(<min>, <max>) ...}; |
| `deconstructed-pancake` | flex: 0 1 `baseWidth`}; |
| `sidebar-says` | grid-template-columns: minmax(`min`, `max`) `...`}; |
| `pancake-stack` | grid-template-rows: auto 1fr auto; |
| `classic-holy-grail-layout` | grid-template: auto 1fr auto / auto 1fr auto; |
| `12-span-grid` | grid-template-columns: repeat(12, 1fr); |
| `ram` | grid-template-columns: repeat(auto-fit, minmax(<base>, 1fr)); |
| `ram` | grid-template-columns: repeat(auto-fit, minmax(`base`, 1fr)); |
| `line-up` | justify-content: space-between; |
| `clamping-my-style` | clamp(<min>, <actual>, <max>); |
| `respect-for-aspect` | aspect-ratio: <width> / <height>}; |
| `clamping-my-style` | clamp(`min`, `actual`, `max`); |
| `respect-for-aspect` | aspect-ratio: `width` / `height`}; |

## Extra Guides

Expand Down

0 comments on commit f44f3d7

Please sign in to comment.