28 lines
419 B
SCSS
28 lines
419 B
SCSS
/* Style global des items */
|
|
ion-item {
|
|
--background: #ffffff;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
/* Label */
|
|
ion-label {
|
|
font-size: 13px;
|
|
color: #666;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
/* Input */
|
|
ion-input {
|
|
--padding-start: 10px;
|
|
--padding-end: 10px;
|
|
--padding-top: 0;
|
|
--padding-bottom: 0;
|
|
border: solid 1px #000;
|
|
border-radius: 10px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
/* Button */
|
|
ion-button:active {
|
|
transform: scale(0.98);
|
|
} |