12345678910111213141516171819202122232425262728293031323334 |
- ion-card-header.ios {
- display: flex;
- flex-flow: column-reverse;
- }
-
- ion-grid {
- --ion-grid-width: 50%;
-
- --ion-grid-width-xs: 50%;
- --ion-grid-width-sm: 288px;
- --ion-grid-width-md: 384px;
- --ion-grid-width-lg: 480px;
- --ion-grid-width-xl: 570px;
- }
-
- ion-col {
- text-align: center;
- align-items: center;
- }
-
- .Header-Color {
- --background: #4de9d9;
- }
-
- .Footer-Color {
- --background: #d3d3d3;
- }
-
- .Item-Center {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
|