12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- @bg-color:#fff; /**主题背景色**/
- @header-height:50px; /***Header高度**/
- @table-th-color:#F2F4F6; /***表头背景色***/
- @active-bg:#DEF1FF; /***下拉项选中背景色***/
- .ant-form-item-label > label{
- color: #000;
- }
- .wrapper{
- min-width: 1214px;
- .basic{
- height: 78px;
- background: #fff;
- margin-bottom:12px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 28px 0 60px;
- border-radius: 4px;
- .basic-left{
- display: flex;
- }
- .basic-right{
- & button:first-child{
- margin-right: 15px;
- }
- }
- }
- .table{
- padding: 0 28px;
- background: #fff;
- .table-header{
- display: flex;
- justify-content: space-between;
- padding: 24px 0;
- .ant-breadcrumb-link{
- font-size: 16px;
- font-weight: 500;
- color: #333333;
- }
- }
- }
- }
|