Update README.md

This commit is contained in:
Yev Vlasenko
2017-07-27 15:53:07 +01:00
committed by GitHub
parent 251896e222
commit cd42709c03

View File

@@ -203,6 +203,26 @@ Example:
</modal> </modal>
``` ```
#### Background color
If you want to change overflow background color, you can easily do it using css.
For all modals:
```css
.v--modal-overlay {
background: red;
}
```
For specific modal:
```css
.v--modal-overlay[data-modal="my_modal_name"] {
background: cyan;
}
```
#### Fullscreen #### Fullscreen
```vue ```vue