12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- .SpaceCostManagement {
- padding: 16px;
- background: #FFFFFF;
- border-radius: 4px;
- .toolBar {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- .filter {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- .filterItem {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- }
- }
- .btnGroup {
- .import {
- cursor: pointer;
- display: inline-block;
- font-size: 14px;
- font-weight: 400;
- color: #17181A;
- line-height: 24px;
- padding: 0 14px;
- margin-right: 8px;
- background: #FAFCFF;
- border-radius: 4px;
- border: 1px solid #DAE2F2;
- }
- .add {
- cursor: pointer;
- display: inline-block;
- font-size: 14px;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 24px;
- padding: 0 14px;
- background: #3377FF;
- border-radius: 4px;
- }
- }
- }
- }
|