mirror of
https://github.com/zoriya/react-native-web.git
synced 2026-06-05 11:19:34 +00:00
15 lines
619 B
CSS
15 lines
619 B
CSS
.backgroundColor-black { background-color: black; }
|
|
.backgroundColor-transparent { background-color: currentcolor; }
|
|
.backgroundColor-white { background-color: white; }
|
|
|
|
.backgroundImage { background-image: none; }
|
|
|
|
.backgroundPosition-center { background-position: center; }
|
|
.backgroundSize-contain { background-size: contain; }
|
|
.backgroundSize-cover { background-size: cover; }
|
|
|
|
.backgroundRepeat-no-repeat { background-repeat: no-repeat; }
|
|
.backgroundRepeat-repeat { background-repeat: repeat; }
|
|
.backgroundRepeat-repeat-x { background-repeat: repeat-x; }
|
|
.backgroundRepeat-repeat-y { background-repeat: repeat-y; }
|