12345678910111213141516171819 |
- // For information on how to create your own theme, please see:
- // http://ionicframework.com/docs/theming/
- ion-button {
- border-radius: 12px; /* 按钮圆角 */
- --background: #99ffcc; /* 设置背景色为 #99ffcc */
- color: #333; /* 按钮中文字的颜色 */
- font-weight: bold; /* 按钮字体加粗 */
- text-align: center; /* 确保按钮文字水平居中 */
- display: flex; /* 使用 flexbox 布局 */
- justify-content: center; /* 水平居中 */
- align-items: center; /* 垂直居中 */
- }
- .bg-color{
- background-image: url('https://app.fmode.cn/dev/jxnu/202226701038/bg.jpg'); /* 背景图片路径 */
- background-size: cover; /* 背景图片覆盖整个区域 */
- background-repeat: no-repeat; /* 禁止重复 */
- }
|