mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
21 lines
302 B
SCSS
21 lines
302 B
SCSS
ion-view,
|
|
.ion-view {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
background-color: white;
|
|
|
|
// by default this is display: none;
|
|
// and the transition animation will display it
|
|
//display: none;
|
|
flex-direction: column;
|
|
|
|
&.show-view {
|
|
display: flex;
|
|
}
|
|
|
|
}
|