| 123456789101112131415161718192021222324252627282930313233343536373839 |
- /**app.wxss**/
- .container {
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- padding: 200rpx 0;
- box-sizing: border-box;
- }
- /* new color here */
- .primary-text-color {
- color: #009195 !important;
- }
- .primary-background-color {
- background: #009195 !important;
- }
- .primary-border-color {
- border: 2rpx solid #009195 !important;
- }
- .secondary-text-color {
- color: #707070 !important;
- }
- .secondary-background-color {
- background: #EDEDED !important;
- }
- .white-text-color {
- color: #FFFFFF !important;
- }
- page {
- background: #EDEDED;
- }
|