docs(previews): update preview tests to have translucent white toolbars

to make ben happy
This commit is contained in:
octicon-git-branch(16/)
octicon-tag(16/)
Brandy Carney
2018-07-24 16:27:17 -04:00
gitea-unlock(16/)
parent 55cb354d48
commit 2c37a5a7b2
octicon-diff(16/tw-mr-1) 48 changed files with 663 additions and 456 deletions

19
core/src/components/card/test/preview/index.html
View File

@@ -12,13 +12,13 @@
<body>
<ion-app>
<ion-header>
<ion-header translucent>
<ion-toolbar>
<ion-title>Card</ion-title>
</ion-toolbar>
</ion-header>
<ion-content id="content">
<ion-content id="content" fullscreen>
<ion-card>
<ion-card-header>
<ion-card-subtitle>Card Subtitle</ion-card-subtitle>
@@ -66,13 +66,16 @@
</ion-card>
</ion-content>
</ion-app>
<style>
.content {
background: #e5e5e5;
}
<style>
ion-toolbar {
--background: white;
}
</style>
.content {
background: #e5e5e5;
}
</style>
</ion-app>
</body>
</html>