12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- .performance-analysis {
- padding: 15px;
- &-search {
- background-color: #fff;
- border-radius: 5px;
- padding: 15px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 10px;
- &-left {
- .tab {
- display: flex;
- border: solid 1px #1767f2;
- &-item {
- width: 40px;
- height: 34px;
- line-height: 34px;
- text-align: center;
- border-right: solid 1px #1767f2;
- color: #1767f2;
- font-size: 16px;
- &:last-child {
- border-right: none;
- }
- }
- .active {
- background-color: #1767f2;
- color: #fff;
- }
- }
- }
- &-right {
- width: 150px;
- }
- }
- &-content {
- background-color: #fff;
- border-radius: 5px;
- margin-bottom: 10px;
- padding: 15px;
- }
- }
|