Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
izica committed Jun 17, 2018
1 parent f26c303 commit 598b7a0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ generate style with class(class styles supports media query)
$sClassname = (new PhpStyles())->media(0, 1024)->opacity(0, $sContact == '')->render();
or
$sClassname = styles()->media(0, 1024)->opacity(0, $sContact == '')->render();
or
$sClassname = styles()
->media(0, 1024)
->set('display', 'flex'),
->set('align-items', 'center'),
->set('color', '#ccc')
->opacity(0, $sContact == '')
->render();
```

insert style
Expand Down

0 comments on commit 598b7a0

Please sign in to comment.