|
123456789101112131415161718192021222324 |
- .service-info {
- height: 100%;
- &__content {
- display: flex;
- flex-direction: column;
- height: calc(100% - 60px);
- margin-top: 10px;
- padding: 20px 30px 0;
- background-color: white;
- border-radius: 10px;
-
- &__filter {
- display: flex;
- flex: none;
- align-items: center;
- justify-content: space-between;
- }
-
- &__table {
- flex: 1;
- margin-top: 24px;
- }
- }
- }
|