| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- @import '../../../../themes/page.scss';
- /* module/user/pages/user-record/user-record.wxss */
- .wrapper {
- display: flex;
- $border: 1px solid #EEEEEE;
- &.portrait {
- flex-direction: row;
- flex-wrap: nowrap;
- border-top: $border;
- border-bottom: $border;
- .header {
- flex: none;
- border-right: $border;
- .row {
- width: 90px;
- }
- }
- .scrollable {
- flex: auto;
- }
- .row {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 120px;
- padding: 4px;
- box-sizing: border-box;
- &.odd {
- // background-color: #113B38;
- background-color: #EEEEEE;
- }
- }
- .col {
- font-size: 14px;
- }
- .col+.col {
- border-left: $border;
- }
- }
- }
- .highlight {
- color: #FD3F3F;
- }
|