Skip to content

Commit

Permalink
fix wrapping of provider and datacenter list (#1059)
Browse files Browse the repository at this point in the history
* fix wrapping of provider and datacenter list

* add missing scss file
  • Loading branch information
kgroschoff authored and kubermatic-bot committed Feb 13, 2019
1 parent 3e2ec92 commit 9d823c5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/app/wizard/set-datacenter/set-datacenter.component.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
@import '../../../assets/css/colors';

mat-button-toggle-group[group='datacenterGroup'] {
flex-wrap: wrap;

mat-button-toggle {
margin-top: 10px;
}

div.km-location {
font-weight: 300;
font-size: 12px;
Expand Down
7 changes: 7 additions & 0 deletions src/app/wizard/set-provider/set-provider.component.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
mat-button-toggle-group[group='providerGroup'] {
flex-wrap: wrap;

mat-button-toggle {
margin-top: 10px;
}
}
1 change: 1 addition & 0 deletions src/app/wizard/set-provider/set-provider.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {getDatacenterProvider} from '../../shared/entity/DatacenterEntity';
@Component({
selector: 'kubermatic-set-provider',
templateUrl: 'set-provider.component.html',
styleUrls: ['set-provider.component.scss'],
})
export class SetProviderComponent implements OnInit, OnDestroy {
@Input() cluster: ClusterEntity;
Expand Down

0 comments on commit 9d823c5

Please sign in to comment.