1234567891011121314151617181920 |
- /* global css variable */
- $primary-color: var(--el-color-primary);
- .list-group-striped > .list-group-item {
- padding-right: 0;
- padding-left: 0;
- border-right: 0;
- border-left: 0;
- border-radius: 0;
- }
- .list-group {
- padding-left: 0;
- list-style: none;
- }
- .list-group-item {
- padding: 11px 0;
- margin-bottom: -1px;
- font-size: 13px;
- border-top: 1px solid #e7eaec;
- border-bottom: 1px solid #e7eaec;
- }
|