aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-ui/resources/scss/modules/onboardingCatalog/_catalogList.scss
blob: c632beb3821bee83509f3abc613377094db9cf46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.catalog-list {
    height: 100%;
    overflow: auto;
    display: flex;
    flex-direction: column;
    padding: 0 10px 0 42px;
    .catalog-title {
        @extend .heading-1;
        color: $blue;
        margin: 0 0 12px 18px;
    }

    .catalog-items {
        display: flex;
        flex-wrap: wrap;
        @import 'tile';
        @import 'createItemTile';
        @import 'catalogTile';
        @import 'vendorTile';
        &:after {
            content: ' ';
            height: 250px;
            display: block;
            width: 100%;
        }
        .venodor-tile-btn {
            border: 1px solid $light-gray;
            color: $black;
            line-height: 20px;
            &:hover {
                background-color: $light-gray;
            }
        }
    }

    // Bottom spacing - cross browser solution
}