react 16 upgrade
[sdc.git] / openecomp-ui / resources / scss / modules / onboardingCatalog / _catalogList.scss
1 .catalog-list {
2     height: 100%;
3     overflow: auto;
4     display: flex;
5     flex-direction: column;
6     padding: 0 10px 0 42px;
7     .catalog-title {
8         @extend .heading-1;
9         color: $blue;
10         margin: 0 0 12px 18px;
11     }
12
13     .catalog-items {
14         display: flex;
15         flex-wrap: wrap;
16         @import 'tile';
17         @import 'createItemTile';
18         @import 'catalogTile';
19         @import 'vendorTile';
20         &:after {
21             content: ' ';
22             height: 250px;
23             display: block;
24             width: 100%;
25         }
26         .venodor-tile-btn {
27             border: 1px solid $light-gray;
28             color: $black;
29             line-height: 20px;
30             &:hover {
31                 background-color: $light-gray;
32             }
33         }
34     }
35
36     // Bottom spacing - cross browser solution
37 }