| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /* mMine/pages/myperformance/myperformance.wxss */
- .title-view {
- background-color: #f0f0f0;
- .title-view-text {
- font-size: 12px;
- color: #666;
- text-align: center;
- border-right: 1px solid #f0f0f0;
- }
- }
- .title-view, .order-list-item-row {
- padding: 12px 0px;
- display: flex;
- justify-content: space-around;
- align-items: center;
- border-bottom: 1px solid #f0f0f0;
- }
- .order-list-item {
- display: flex;
- flex-direction: column;
- text {
- font-size: 14px;
- color: #333;
- text-align: center;
- border-right: 1px solid #f0f0f0;
- }
- .order-list-item-btn {
- padding: 7.5px 0px;
- display: flex;
- height: 30px;
-
- button {
- font-size: 12px;
- color: white;
- width: 80px;
- }
-
- .per-detail {
- background-color: rebeccapurple;
- }
-
- .per-manual {
- background-color: yellowgreen;
- }
-
- .apply-dely {
- background-color: chocolate;
- }
-
- .apply-default {
- background-color: sandybrown;
- }
-
- .edit {
- background-color: darkgoldenrod;
- }
- }
- }
|